git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* Removing a merge commit
@ 2008-12-10 20:20 Ray Morgan
  2008-12-11  0:24 ` Jeff Whiteside
  0 siblings, 1 reply; 2+ messages in thread
From: Ray Morgan @ 2008-12-10 20:20 UTC (permalink / raw)
  To: git

Hello,

To build a release for our site, we merge branches that developers  
create. We do this with --no-ff in order to make it only one commit to  
pull if it fails QA. Say the qa branch's history has 4 merge commits  
in a row, is there any way to remove the 3rd (just pulling it out..  
much like how a rebase works)?

Currently we just checkout below that failed branch and re-merge  
everything above it.. but that just seems very clumsy (and manual).

Thanks!
Ray

^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: Removing a merge commit
  2008-12-10 20:20 Removing a merge commit Ray Morgan
@ 2008-12-11  0:24 ` Jeff Whiteside
  0 siblings, 0 replies; 2+ messages in thread
From: Jeff Whiteside @ 2008-12-11  0:24 UTC (permalink / raw)
  To: Ray Morgan; +Cc: git

Isn't this what you want? (taken from
http://www.kernel.org/pub/software/scm/git/docs/git-rebase.html)



A range of commits could also be removed with rebase. If we have the
following situation:

    E---F---G---H---I---J  topicA

then the command

git rebase --onto topicA~5 topicA~3 topicA

would result in the removal of commits F and G:

    E---H'---I'---J'  topicA



On Wed, Dec 10, 2008 at 12:20 PM, Ray Morgan <raycmorgan@mac.com> wrote:
> Hello,
>
> To build a release for our site, we merge branches that developers create.
> We do this with --no-ff in order to make it only one commit to pull if it
> fails QA. Say the qa branch's history has 4 merge commits in a row, is there
> any way to remove the 3rd (just pulling it out.. much like how a rebase
> works)?
>
> Currently we just checkout below that failed branch and re-merge everything
> above it.. but that just seems very clumsy (and manual).
>
> Thanks!
> Ray
> --
> To unsubscribe from this list: send the line "unsubscribe git" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html
>

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2008-12-11  0:25 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-12-10 20:20 Removing a merge commit Ray Morgan
2008-12-11  0:24 ` Jeff Whiteside

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).