I've made multiple changes to two files in a git repository (specifically, added two formulae to brew).

I committed the changes individually:

git commit file1
git commit file2

I then did one push to github:

git push git@github.com:myname/homebrew.git

I'd now like to send two pull requests to the upstream repo, one for file1, one for file2. Is this possible?

link|improve this question

maybe you mean 'push' ? – zed_0xff Dec 7 '11 at 19:50
No I did the git commit and then, as per the Brew CookBook, git push git@github.com:myname/homebrew.git. Now I want to do a pull request to the upstream repo. – mankoff Dec 7 '11 at 19:52
@zed_0xff: I don't think so. help.github.com/send-pull-requests – Jefromi Dec 7 '11 at 19:52
No, he means "pull request" on Github. You can only create seperate pull request if you have split your changes into seperate commits. SO is however not the place for this question as it is not programming related. – halfdan Dec 7 '11 at 19:52
2  
@halfdan: Please go read the FAQ before you make any more assertions about what's on topic here. The scope of SO includes "software tools commonly used by programmers", and there are nearly twelve thousand Git questions here. – Jefromi Dec 7 '11 at 19:59
feedback

3 Answers

up vote 3 down vote accepted

If you changed both files in the same commit, then no, this isn't possible. Pushes and pulls operate at a commit level; they won't split them apart.

If you haven't shared the changes yet, you could split the commit into two, making a branch for each, and then initiate pull requests for those.

This is one of those things there are many ways to do, but for example, you could do something like this:

# make sure the commit in question is the most recent
# make branch to point to the previous commit, leaving the changes in your work tree
git reset HEAD^
# commit the changes to the first file
git add file1
git commit
# make a branch for the first commit
git branch first-branch HEAD^
# commit the changes to the second file
git add file2
git commit
# create and check out a branch for this commit
git checkout -b second-branch
# rebase the branch back, so that it doesn't include the first commit
git rebase --onto HEAD^^ HEAD^ second-branch

# point your master branch somewhere that makes sense - maybe before either branch
git checkout master
git reset --hard first-branch^

This would leave you with history like this:

- x (master) - A (first-branch)
   \
    - B (second-branch)

where commit A modified file1, and commit B modified file2.

Once the history looks the way you like it, you can push the two branches separately and do what you need to do with them:

git push origin first-branch second-branch
link|improve this answer
Clarified question. I did different commits, but one push. – mankoff Dec 7 '11 at 20:02
@mankoff: Then you can start from the point in my instructions where I've created the second commit. I'll leave the rest since it could be useful to others. – Jefromi Dec 7 '11 at 20:09
where do I do the push in this sequence? When I do it at then end, it says 'Everything up-to-date'. – mankoff Dec 7 '11 at 20:27
@mankoff: Then you probably weren't pushing those branches? – Jefromi Dec 7 '11 at 20:35
feedback

Put each file on its own branch. You can generate a pull request for each branch, which should do what you want.

link|improve this answer
feedback

You can only fetch the whole revision (actually, the whole branch leading to the revision), but you can then access individual files from your repository:

git checkout <rev> -- <file>
link|improve this answer
1  
That's not what he asks. – halfdan Dec 7 '11 at 19:54
1  
To tell you the truth, I still can't figure out what is it then… – Michael Krelin - hacker Dec 7 '11 at 19:55
feedback

Your Answer

 
or
required, but never shown

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