Please have some patience as I am still trying to find my way around with git. The whole practice of forking and branching all over the place makes it a bit harder to grok what's going on.

I am trying to get a workflow going but, I'm running into hurdles. So far, this is what I have:

1. Fork project

2. Clone the fork locally

   $ git clone git@github.com:MyName/foo.git

3. Add the upstream remote so your fork can be kept up to date

   $ git remote add upstream git@github.com:OriginalName/foo.git

4 Working on a branch in the clone:

   $ git checkout -t origin/branchName

5 Update from the orginal (upstream) project's branch:

   $ git fetch upstream
   $ git merge upstream/branchName

6 Commit and push changes in my fork

   $ git commit -a -m "some message"
   $ git push

How do I get the changes in my fork to the original project? I'm told pull requests but, I can't find the command to run to make that happen. Google hasn't been to helpful.

Should I checkout the branch from upstream, merge my fork, and push?

Should I clone the original project in a different directory, add the fork as an upstream, merge, and push?

link|improve this question
Do you control both repositories? I think it's up to the owner to decide whether to merge changes. – Blender Oct 4 '11 at 18:26
are you using github? – Bryce Oct 4 '11 at 18:33
@Blender yes. Thus the question. I'm trying to find the best way to do that :-) – willCode4Beer Oct 4 '11 at 18:43
@Bryce yes, it is – willCode4Beer Oct 4 '11 at 18:43
feedback

4 Answers

I assume you are using github since you tagged it with that. See how to send pull requests here: http://help.github.com/send-pull-requests/

If you don't want to use that, you can use

git-format-patch

to prepare patches for sending via email.

link|improve this answer
Wouldn't I lose the commit history with a patch? BTW, I just tried that command, nothing happend.... – willCode4Beer Oct 4 '11 at 18:38
From that link, the answer matches my last thought (the one I thought was too crazy, lol) – willCode4Beer Oct 4 '11 at 18:44
You won't lose that commit history. The pull request maintains your history and commit hashes as long as you don't rebase (which is another common pull request technique). The maintainer will just merge your commits in to their history. – Bryce Oct 4 '11 at 19:00
I would not bother with patches in this day and age. – Adam Dymitruk Oct 4 '11 at 19:55
feedback

The pull request is done in the Github page of your project.

Hope this helps.

link|improve this answer
feedback

"Pull request" is a GitHub function, not a git function.

link|improve this answer
feedback

What you are asking about is called the integrator workflow, also known as the integration manager workflow. Many developers find this confusing first, especially after working with centralised version control systems for a long time.

Good news: it is fairly simple, but you need to understand what "blessed repository", "forking", "commit", "push" and "pull" mean and how to correctly setup the access rights on the different reports used.

We at Intland made a tutorial for our team: What is the Integrator Workflow? If you have 6 minutes, it is worth a watch.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.