Skip to content

Commit

Permalink
Merge branch 'fr/sequencer-fail-with-not-one-upon-no-ff'
Browse files Browse the repository at this point in the history
* fr/sequencer-fail-with-not-one-upon-no-ff:
  sequencer: signal failed ff as an aborted, not a conflicted merge
  • Loading branch information
Junio C Hamano committed Jun 25, 2014
2 parents 786a89d + 43dee07 commit 9ce7100
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sequencer.c
Original file line number Diff line number Diff line change
Expand Up @@ -278,7 +278,7 @@ static int fast_forward_to(const unsigned char *to, const unsigned char *from,

read_cache();
if (checkout_fast_forward(from, to, 1))
exit(1); /* the callee should have complained already */
exit(128); /* the callee should have complained already */
ref_lock = lock_any_ref_for_update("HEAD", unborn ? null_sha1 : from,
0, NULL);
if (!ref_lock)
Expand Down

0 comments on commit 9ce7100

Please sign in to comment.