[PATCH] optimize git-resolve-script
authorJeff Garzik <jgarzik@pobox.com>
Wed, 25 May 2005 17:21:09 +0000 (13:21 -0400)
committerLinus Torvalds <torvalds@ppc970.osdl.org>
Wed, 25 May 2005 18:59:37 +0000 (11:59 -0700)
This change was suggested for my git-switch-tree script, and the same
issues apply to core git's git-resolve-script as well.

git-resolve-script

index ec646fb..5f1a748 100644 (file)
@@ -39,7 +39,7 @@ if [ "$common" == "$head" ]; then
        echo "Destroying all noncommitted data!"
        echo "Kill me within 3 seconds.."
        sleep 3
-       git-read-tree -m $merge && git-checkout-cache -f -a && git-update-cache --refresh
+       git-read-tree -m $merge && git-checkout-cache -f -u -a
        echo $merge > "$GIT_DIR"/HEAD
        git-diff-tree -p ORIG_HEAD HEAD | diffstat -p1
        exit 0
@@ -57,5 +57,5 @@ fi
 result_commit=$(echo "$merge_msg" | git-commit-tree $result_tree -p $head -p $merge)
 echo "Committed merge $result_commit"
 echo $result_commit > "$GIT_DIR"/HEAD
-git-checkout-cache -f -a && git-update-cache --refresh
+git-checkout-cache -f -u -a
 git-diff-tree -p ORIG_HEAD HEAD | diffstat -p1