Skip to content

Commit

Permalink
Merge branch 'maint'
Browse files Browse the repository at this point in the history
* maint:
  pre-commit hook: complain about conflict markers.
  git-merge: a bit more readable user guidance.
  • Loading branch information
Junio C Hamano committed Apr 19, 2006
2 parents ba580ae + 61c2bcb commit b895076
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion git-merge.sh
Original file line number Diff line number Diff line change
Expand Up @@ -335,5 +335,5 @@ Conflicts:
then
git-rerere
fi
die "Automatic merge failed; fix up by hand"
die "Automatic merge failed; fix conflicts and then commit the result."
fi
3 changes: 3 additions & 0 deletions templates/hooks--pre-commit
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,9 @@ perl -e '
if (/^\s* /) {
bad_line("indent SP followed by a TAB", $_);
}
if (/^(?:[<>=]){7}/) {
bad_line("unresolved merge conflict", $_);
}
}
}
exit($found_bad);
Expand Down

0 comments on commit b895076

Please sign in to comment.