Skip to content

Commit

Permalink
Merge branch 'cb/maint-no-double-merge' into maint
Browse files Browse the repository at this point in the history
* cb/maint-no-double-merge:
  refuse to merge during a merge
  • Loading branch information
Junio C Hamano committed Jun 22, 2009
2 parents 6019b3c + c8c562a commit d836118
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
5 changes: 4 additions & 1 deletion builtin-merge.c
Original file line number Diff line number Diff line change
Expand Up @@ -836,8 +836,11 @@ int cmd_merge(int argc, const char **argv, const char *prefix)
struct commit_list **remotes = &remoteheads;

setup_work_tree();
if (file_exists(git_path("MERGE_HEAD")))
die("You have not concluded your merge. (MERGE_HEAD exists)");
if (read_cache_unmerged())
die("You are in the middle of a conflicted merge.");
die("You are in the middle of a conflicted merge."
" (index unmerged)");

/*
* Check if we are _not_ on a detached HEAD, i.e. if there is a
Expand Down
3 changes: 3 additions & 0 deletions t/t3030-merge-recursive.sh
Original file line number Diff line number Diff line change
Expand Up @@ -276,6 +276,9 @@ test_expect_success 'fail if the index has unresolved entries' '
test_must_fail git merge "$c5" &&
test_must_fail git merge "$c5" 2> out &&
grep "You have not concluded your merge" out &&
rm -f .git/MERGE_HEAD &&
test_must_fail git merge "$c5" 2> out &&
grep "You are in the middle of a conflicted merge" out
'
Expand Down

0 comments on commit d836118

Please sign in to comment.