Make default merge messages denser.

In particular, make them readable on one line since that's what all the
tools like git-shortlog and gitk end up showing.
This commit is contained in:
Linus Torvalds
2005-06-08 10:09:41 -07:00
parent 4e7346735a
commit 5b1ea09de1
2 changed files with 2 additions and 5 deletions

View File

@@ -6,9 +6,7 @@ merge_name=$(echo "$1" | sed 's:\.git/*$::')
merge_head=HEAD
if [ "$2" ]
then
merge_name="'$2' branch from
$merge_name"
merge_name="'$2' branch of $merge_name"
merge_head="refs/heads/$2"
fi