aboutsummaryrefslogtreecommitdiff
path: root/t
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2014-03-18 14:04:36 -0700
committerJunio C Hamano <gitster@pobox.com>2014-03-18 14:04:36 -0700
commit01e13d0221e73febdcb98e26b4ae2882887421d8 (patch)
tree42ef3c061af3cdd78fa78797b2fcec423611032c /t
parent4097a25429d09b61616845fbe6551587a30fa038 (diff)
parentfcfec8bd9a9bf0a0f36ba4aed85f5768988aa946 (diff)
downloadgit-01e13d0221e73febdcb98e26b4ae2882887421d8.tar.gz
git-01e13d0221e73febdcb98e26b4ae2882887421d8.tar.xz
Merge branch 'da/difftool-git-files' into maint
"git difftool" misbehaved when the repository is bound to the working tree with the ".git file" mechanism, where a textual file ".git" tells us where it is. * da/difftool-git-files: t7800: add a difftool test for .git-files difftool: support repositories with .git-files
Diffstat (limited to 't')
-rwxr-xr-xt/t7800-difftool.sh14
1 files changed, 14 insertions, 0 deletions
diff --git a/t/t7800-difftool.sh b/t/t7800-difftool.sh
index 241852848..5a193c500 100755
--- a/t/t7800-difftool.sh
+++ b/t/t7800-difftool.sh
@@ -434,4 +434,18 @@ test_expect_success PERL 'difftool --no-symlinks detects conflict ' '
)
'
+test_expect_success PERL 'difftool properly honors gitlink and core.worktree' '
+ git submodule add ./. submod/ule &&
+ (
+ cd submod/ule &&
+ test_config diff.tool checktrees &&
+ test_config difftool.checktrees.cmd '\''
+ test -d "$LOCAL" && test -d "$REMOTE" && echo good
+ '\'' &&
+ echo good >expect &&
+ git difftool --tool=checktrees --dir-diff HEAD~ >actual &&
+ test_cmp expect actual
+ )
+'
+
test_done