* How to Push a range of commits.
@ 2010-06-30 5:51 Mahesh Vaidya
2010-06-30 13:47 ` Ramkumar Ramachandra
0 siblings, 1 reply; 2+ messages in thread
From: Mahesh Vaidya @ 2010-06-30 5:51 UTC (permalink / raw)
To: git
On branch 'foobar' I have a range of contiguous commits say C1...C9,
C1 being at HEAD / TOP.
If I push branch all 9 commits will make it to authoritative
repository. Is there a way to push a single commit (as C9 or C10 new
commit) which is common change set between C1 .. C9
--
Thank You
-Mahesh,
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: How to Push a range of commits.
2010-06-30 5:51 How to Push a range of commits Mahesh Vaidya
@ 2010-06-30 13:47 ` Ramkumar Ramachandra
0 siblings, 0 replies; 2+ messages in thread
From: Ramkumar Ramachandra @ 2010-06-30 13:47 UTC (permalink / raw)
To: Mahesh Vaidya; +Cc: git
Hi Mahesh,
Mahesh Vaidya writes:
> On branch 'foobar' I have a range of contiguous commits say C1...C9,
> C1 being at HEAD / TOP.
>
> If I push branch all 9 commits will make it to authoritative
> repository. Is there a way to push a single commit (as C9 or C10 new
> commit) which is common change set between C1 .. C9
Do you want to squash all the commits into one commit and push that?
If so, use the interactive rebase to squash them into one commit (in
possibly another branch) and push that commit.
If you want to push just a few commits instead, create a new branch
based on upstream, cherry-pick the commits you want into it and push
it to the upstream branch. For example, if I have a branch `foo`
tracking the upstream `origin/foo` and is ahead of the upstream by 10
commits, but I only want to push commit `bar`:
$ # In branch foo
$ git checkout moo # New temporary branch
$ git reset --hard origin/foo # Base it on upstream
$ git cherry-pick bar
$ git push origin +refs/heads/moo:refs/heads/foo
$ # I think the "refs/heads" part can be omitted in the above command
-- Ram
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2010-06-30 13:46 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-06-30 5:51 How to Push a range of commits Mahesh Vaidya
2010-06-30 13:47 ` Ramkumar Ramachandra
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).