aboutsummaryrefslogtreecommitdiff
path: root/git-reset.sh
diff options
context:
space:
mode:
authorNicolas Pitre <nico@cam.org>2007-04-23 13:17:19 -0400
committerJunio C Hamano <junkio@cox.net>2007-04-23 21:39:28 -0700
commit4c474b6f92a2aa0b5aea282fe281e8f65279380a (patch)
tree9814bdeedd7a8dfe6c0f5d264f73e2b5aa772f4c /git-reset.sh
parent2cc3167c688d1c91bc4cb9b1caa737b9d4971056 (diff)
downloadgit-4c474b6f92a2aa0b5aea282fe281e8f65279380a.tar.gz
git-4c474b6f92a2aa0b5aea282fe281e8f65279380a.tar.xz
add file checkout progress
It is nice to see what is happening when checking out large amount of files, either with git-checkout or git-reset. The new progress code already decides what is a "significant amount" and displays progress only in that case.. Signed-off-by: Nicolas Pitre <nico@cam.org> Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'git-reset.sh')
-rwxr-xr-xgit-reset.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/git-reset.sh b/git-reset.sh
index fee6d98d9..a172d7ce2 100755
--- a/git-reset.sh
+++ b/git-reset.sh
@@ -71,7 +71,7 @@ then
die "Cannot do a soft reset in the middle of a merge."
fi
else
- git-read-tree --reset $update "$rev" || exit
+ git-read-tree -v --reset $update "$rev" || exit
fi
# Any resets update HEAD to the head being switched to.