summaryrefslogtreecommitdiff
path: root/git-reset.sh
diff options
context:
space:
mode:
authorShawn O. Pearce <spearce@spearce.org>2006-12-31 04:32:38 (GMT)
committerJunio C Hamano <junkio@cox.net>2007-01-10 23:03:09 (GMT)
commit7eff28a9b42cb0d3aad932338b2e645fc6ed8fa9 (patch)
treec22c8cf02e3b09568198fa405ba7322aafe328ae /git-reset.sh
parent4b441f47cefe7f4861167a151a395606e1a16745 (diff)
downloadgit-7eff28a9b42cb0d3aad932338b2e645fc6ed8fa9.zip
git-7eff28a9b42cb0d3aad932338b2e645fc6ed8fa9.tar.gz
git-7eff28a9b42cb0d3aad932338b2e645fc6ed8fa9.tar.bz2
Disallow working directory commands in a bare repository.
If the user tries to run a porcelainish command which requires a working directory in a bare repository they may get unexpected results which are difficult to predict and may differ from command to command. Instead we should detect that the current repository is a bare repository and refuse to run the command there, as there is no working directory associated with it. [jc: updated Shawn's original somewhat -- bugs are mine.] Signed-off-by: Shawn O. Pearce <spearce@spearce.org> Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'git-reset.sh')
-rwxr-xr-xgit-reset.sh1
1 files changed, 1 insertions, 0 deletions
diff --git a/git-reset.sh b/git-reset.sh
index 76c8a81..b9045bc 100755
--- a/git-reset.sh
+++ b/git-reset.sh
@@ -6,6 +6,7 @@ USAGE='[--mixed | --soft | --hard] [<commit-ish>] [ [--] <paths>...]'
SUBDIRECTORY_OK=Yes
. git-sh-setup
set_reflog_action "reset $*"
+require_work_tree
update= reset_type=--mixed
unset rev