Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have made several commits on different files, but so far I would like to push to my remote repository only a specific commit.

Is that possible?

share|improve this question
possible duplicate of git: push a single commit – Mark Dec 3 '11 at 12:25

4 Answers

git push <remotename> <commit SHA>:<remotebranchname> should do the trick.

Note that this pushes all commits up to and including the commit you choose. If you don't want that to happen, you should first use git rebase -i to re-order the commits.

share|improve this answer
+1 I was looking for something like this but I didn't find it. – Josh K Jul 12 '10 at 16:36
11  
hmmm,.. This seems to push all of the commits up to and including <commit SHA> – Greg Apr 29 '11 at 0:40
23  
git push <remotename> <commit SHA>:<remotebranchname> works. the trick is to combine it with git rebase -i to move the commit you want as the first commit, and specify that commit-sha – dminer Jan 6 '12 at 20:32
9  
another good tip is to make sure you copy the SHA of the commit you want to push after doing that rebase -i, and not before, like i just did :) – estan May 15 '12 at 21:53
1  
Keep in mind that this fails if the remote branch does not yet exist. Creating the branch can be done with git push <remotename> <commit SHA>:refs/heads/<new remote branch name>. After this, push as the answer describes. – Wes Oldenbeuving Sep 7 '12 at 9:54
show 5 more comments

Tried the suggested solution:

git push <remotename> <commit SHA>:<remotebranchname>

like this:

git push origin 712acff81033eddc90bb2b45e1e4cd031fefc50f:master

In my case master was 5 commits ahead and I just wanted to push my last commit but the above ended up pushing all of my changes up to and including the named commit. It seems to me that the cherry-pick method might be a better approach for this usecase.

share|improve this answer
Yes I had the same problem here too – Greg May 1 '11 at 4:21
5  
Yes, git push origin 712acff81033eddc90bb2b45e1e4cd031fefc50f:master will push all the commits before 712acff81033eddc90bb2b45e1e4cd031fefc50f including itself. If you want to only push 712acff81033eddc90bb2b45e1e4cd031fefc50f, then you should use git rebase -i to reorder the commit as the first one, and then run git push origin 712acff81033eddc90bb2b45e1e4cd031fefc50f:master – dminer Jan 6 '12 at 20:36

I'd suggest using git rebase -i; move the commit you want to push to the top of the commits you've made. Then use git log to get the SHA of the rebased commit, check it out, and push it. The rebase will have ensures that all your other commits are now children of the one you pushed, so future pushes will work fine too.

share|improve this answer

I believe you would have to "git revert" back to that commit and then push it. Or you could cherry-pick a commit into a new branch, and push that to the branch on the remote repo. Something like :

git branch onecommit
git checkout onecommit
git cherry-pick 7300a6130d9447e18a931e898b64eefedea19544 # From the other branch
git push origin {branch}
share|improve this answer
3  
git revert is a bad idea here -- it creates a new commit – hasen j Jul 12 '10 at 16:13
@hasen: You could then just cherry-pick the commit you want. – Josh K Jul 12 '10 at 16:36
3  
both revert and cherry-pick are bad ideas. git rebase -i is your friend here, see answer from Walter Mundt below. – Nicolas Sep 5 '12 at 8:13

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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