Browse Source

Merge branch 'maint'

* maint:
  pre-commit hook: complain about conflict markers.
  git-merge: a bit more readable user guidance.
maint
Junio C Hamano 19 years ago
parent
commit
b8950769b8
  1. 2
      git-merge.sh
  2. 3
      templates/hooks--pre-commit

2
git-merge.sh

@ -335,5 +335,5 @@ Conflicts: @@ -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
templates/hooks--pre-commit

@ -61,6 +61,9 @@ perl -e ' @@ -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);

Loading…
Cancel
Save