Erik Z
Erik Z

Reputation: 4790

How do I contribute to a Git-hosted project on Google Code?

I'm rather new to Git and in particular Git-hosting on Google Code. My question is, how do I contribute to a Git-hosted project on Google Code.

I'd made a clone of the original project. What next? And how do I send a pull request to the original-project.

I want to know the workflow and Git-commands.

Thanks!

Upvotes: 2

Views: 103

Answers (1)

wRAR
wRAR

Reputation: 25569

As with any other project offering a git repository (except for github that has internal fork and pull request functions) you either publish your modified repo and send a link and a branch name to the authors of the original software, or use git-format-patch and/or git-send-email to format and send patches for each added commit to the authors.

Upvotes: 3

Related Questions