Skip to content

Commit 180b0d7

Browse files
olafheringJunio C Hamano
authored andcommitted
allow double click on current HEAD id after git-pull
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 <[email protected]>
1 parent f61c2c9 commit 180b0d7

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

git-merge.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ case "$#,$common,$no_commit" in
131131
;;
132132
1,"$head",*)
133133
# Again the most common case of merging one remote.
134-
echo "Updating from $head to $1."
134+
echo "Updating from $head to $1"
135135
git-update-index --refresh 2>/dev/null
136136
new_head=$(git-rev-parse --verify "$1^0") &&
137137
git-read-tree -u -v -m $head "$new_head" &&

git-resolve.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ case "$common" in
4141
exit 0
4242
;;
4343
"$head")
44-
echo "Updating from $head to $merge."
44+
echo "Updating from $head to $merge"
4545
git-read-tree -u -m $head $merge || exit 1
4646
git-update-ref HEAD "$merge" "$head"
4747
git-diff-tree -p $head $merge | git-apply --stat

0 commit comments

Comments
 (0)