Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJunio C Hamano <junkio@cox.net>2007-01-12 23:52:03 +0300
committerJunio C Hamano <junkio@cox.net>2007-01-13 03:54:38 +0300
commit533b70390e540de4e0faed4823ee561c8368e5ec (patch)
treea8daab8c94e77c77cb5a8cdba6a071d5cfb3f2a8 /git-revert.sh
parent514c09fdcfef6385f1a61ee52344794356c99986 (diff)
Allow whole-tree operations to be started from a subdirectory
This updates five commands (merge, pull, rebase, revert and cherry-pick) so that they can be started from a subdirectory. This may not actually be what we want to do. These commands are inherently whole-tree operations, and an inexperienced user may mistakenly expect a "git pull" from a subdirectory would merge only the subdirectory the command started from. Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'git-revert.sh')
-rwxr-xr-xgit-revert.sh3
1 files changed, 3 insertions, 0 deletions
diff --git a/git-revert.sh b/git-revert.sh
index fcca3ebb90..224e6540ca 100755
--- a/git-revert.sh
+++ b/git-revert.sh
@@ -19,8 +19,11 @@ case "$0" in
echo >&2 "What are you talking about?"
exit 1 ;;
esac
+
+SUBDIRECTORY_OK=Yes ;# we will cd up
. git-sh-setup
require_work_tree
+cd_to_toplevel
no_commit=
while case "$#" in 0) break ;; esac