diff options
author | Junio C Hamano <junkio@cox.net> | 2006-02-22 19:02:39 -0800 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-02-22 19:04:06 -0800 |
commit | 744633cbf23d3ed505f96ffc212b30c96b79fb90 (patch) | |
tree | d4c2432fb2c7b745540dbed573e4ce39db4c3adc /git-clone.sh | |
parent | 6dc78e696b8597204b903073da932fc5ed0f419e (diff) | |
download | git-744633cbf23d3ed505f96ffc212b30c96b79fb90.tar.gz git-744633cbf23d3ed505f96ffc212b30c96b79fb90.tar.xz |
checkout - eye candy.
This implements "eye candy" similar to the pack-object/unpack-object
to entertain users while a large tree is being checked out after
a clone or a pull.
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'git-clone.sh')
-rwxr-xr-x | git-clone.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/git-clone.sh b/git-clone.sh index d184ceb7a..54c9e4ea4 100755 --- a/git-clone.sh +++ b/git-clone.sh @@ -253,7 +253,7 @@ Pull: $head_points_at:$origin" && case "$no_checkout" in '') - git checkout + git-read-tree -m -u -v HEAD HEAD esac fi |