git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] require_work_tree: Look for top-level instead of is-inside-work-tree
@ 2010-07-28 16:47 Tor Arne Vestbø
  2010-07-28 23:00 ` Junio C Hamano
  2010-08-02 14:37 ` Michael J Gruber
  0 siblings, 2 replies; 6+ messages in thread
From: Tor Arne Vestbø @ 2010-07-28 16:47 UTC (permalink / raw)
  To: git; +Cc: trast, Tor Arne Vestbø

The documentation describes require_work_tree as guarding against
bare repositories, and that's also the way it's used from porcelain
such as git-rebase. When implemented using --is-inside-work-tree
the samantics change, causing git-rebase to fail if run from outside
GIT_WORK_TREE, even if GIT_WORK_TREE is valid.

Signed-off-by: Tor Arne Vestbø <tor.arne.vestbo@nokia.com>
---
 git-sh-setup.sh     |    2 +-
 t/t1501-worktree.sh |    9 +++++++++
 2 files changed, 10 insertions(+), 1 deletions(-)

diff --git a/git-sh-setup.sh b/git-sh-setup.sh
index 6131670..f8e4428 100644
--- a/git-sh-setup.sh
+++ b/git-sh-setup.sh
@@ -141,7 +141,7 @@ cd_to_toplevel () {
 }
 
 require_work_tree () {
-	test "$(git rev-parse --is-inside-work-tree 2>/dev/null)" = true ||
+	test -n "$(git rev-parse --show-toplevel 2>/dev/null)" ||
 	die "fatal: $0 cannot be used without a working tree."
 }
 
diff --git a/t/t1501-worktree.sh b/t/t1501-worktree.sh
index bd8b607..45b09e7 100755
--- a/t/t1501-worktree.sh
+++ b/t/t1501-worktree.sh
@@ -114,6 +114,15 @@ test_expect_success 'repo finds its work tree from work tree, too' '
 	 test sub/dir/tracked = "$(git ls-files)")
 '
 
+test_expect_success 'require_work_tree finds work tree' '
+	(cd repo.git/work &&
+	. "$(git --exec-path)"/git-sh-setup &&
+	cd .. &&
+	require_work_tree &&
+	cd .. &&
+	require_work_tree)
+'
+
 test_expect_success '_gently() groks relative GIT_DIR & GIT_WORK_TREE' '
 	(cd repo.git/work/sub/dir &&
 	GIT_DIR=../../.. GIT_WORK_TREE=../.. GIT_PAGER= \
-- 
1.7.2.19.g48995

^ permalink raw reply related	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2010-08-03  7:57 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-07-28 16:47 [PATCH] require_work_tree: Look for top-level instead of is-inside-work-tree Tor Arne Vestbø
2010-07-28 23:00 ` Junio C Hamano
2010-07-30 11:04   ` Tor Arne Vestbø
2010-08-02 14:37 ` Michael J Gruber
2010-08-02 17:46   ` Junio C Hamano
2010-08-03  7:57     ` Michael J Gruber

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).