The git merge command has an option to perform fast-forward merge, but this is not what I want, because if it can't do a fast-forward merge, it uses the normal merge.

Is there a git command which only performs a fast-forward merge (from the tracked remote branch) and does nothing if the fast-forward merge is not possible?

link|improve this question

76% accept rate
feedback

1 Answer

up vote 7 down vote accepted

From the git-merge man page:

--ff-only

Refuse to merge and exit with a non-zero status unless the current HEAD is already up-to-date or the merge can be resolved as a fast-forward.

link|improve this answer
2  
I could swear, this option was not yet available when reading the merge-documentation the last time. ;) – Mike L. May 18 '11 at 7:49
2  
maybe someone merged it in since then :-) – Mat May 18 '11 at 7:51
feedback

Your Answer

 
or
required, but never shown

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