diff options
author | Junio C Hamano <junkio@cox.net> | 2007-01-12 12:49:05 -0800 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2007-01-12 16:54:38 -0800 |
commit | 514c09fdcfef6385f1a61ee52344794356c99986 (patch) | |
tree | 54aae1aa9262a75465bfb093761e85308a5164b0 /git-reset.sh | |
parent | 9fde9401a9c3974a407f302d60a1b75e8787f715 (diff) | |
download | git-514c09fdcfef6385f1a61ee52344794356c99986.tar.gz |
Use cd_to_toplevel in scripts that implement it by hand.
This converts scripts that do "cd $(rev-parse --show-cdup)" by
hand to use cd_to_toplevel.
I think git-fetch does not have to go to the toplevel, but that
should be dealt with in a separate patch.
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'git-reset.sh')
-rwxr-xr-x | git-reset.sh | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/git-reset.sh b/git-reset.sh index b9045bc762..91c7e6e664 100755 --- a/git-reset.sh +++ b/git-reset.sh @@ -53,11 +53,7 @@ then exit fi -TOP=$(git-rev-parse --show-cdup) -if test ! -z "$TOP" -then - cd "$TOP" -fi +cd_to_toplevel if test "$reset_type" = "--hard" then |