Skip to content

Commit

Permalink
trivial: remove the dots at the end of file names from merge-one-file
Browse files Browse the repository at this point in the history
to make the output more friendly to mouse copy-paste.

Signed-off-by: Alex Riesen <raa.lkml@gmail.com>
Signed-off-by: Junio C Hamano <junkio@cox.net>
  • Loading branch information
Alex Riesen authored and Junio C Hamano committed Jan 6, 2006
1 parent 50b4e0c commit 31f883d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions git-merge-one-file.sh
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ case "${1:-.}${2:-.}${3:-.}" in
expr "$sz0" \< "$sz1" \* 2 >/dev/null || : >$orig
;;
*)
echo "Auto-merging $4."
echo "Auto-merging $4"
orig=`git-unpack-file $1`
;;
esac
Expand All @@ -107,7 +107,7 @@ case "${1:-.}${2:-.}${3:-.}" in
fi

if [ $ret -ne 0 ]; then
echo "ERROR: Merge conflict in $4."
echo "ERROR: Merge conflict in $4"
exit 1
fi
exec git-update-index -- "$4"
Expand Down

0 comments on commit 31f883d

Please sign in to comment.