allow double click on current HEAD id after git-pull
authorOlaf Hering <olh@suse.de>
Sat, 11 Feb 2006 11:26:30 +0000 (12:26 +0100)
committerJunio C Hamano <junkio@cox.net>
Fri, 10 Mar 2006 02:13:19 +0000 (18:13 -0800)
Double click on to current HEAD commit id is not possible,
the dot has to go.

[jc: by popular requests.]

Signed-off-by: Junio C Hamano <junkio@cox.net>
git-merge.sh
git-resolve.sh

index 7be9e81..cc0952a 100755 (executable)
@@ -131,7 +131,7 @@ case "$#,$common,$no_commit" in
        ;;
 1,"$head",*)
        # Again the most common case of merging one remote.
-       echo "Updating from $head to $1."
+       echo "Updating from $head to $1"
        git-update-index --refresh 2>/dev/null
        new_head=$(git-rev-parse --verify "$1^0") &&
        git-read-tree -u -v -m $head "$new_head" &&
index b53ede8..1c7aaef 100755 (executable)
@@ -41,7 +41,7 @@ case "$common" in
        exit 0
        ;;
 "$head")
-       echo "Updating from $head to $merge."
+       echo "Updating from $head to $merge"
        git-read-tree -u -m $head $merge || exit 1
        git-update-ref HEAD "$merge" "$head"
        git-diff-tree -p $head $merge | git-apply --stat