diff options
author | Junio C Hamano <gitster@pobox.com> | 2018-10-19 13:34:04 +0900 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2018-10-19 13:34:04 +0900 |
commit | d152a74e2584dd0e235c9bcc97ef6a9ed239994a (patch) | |
tree | a8a6534606e4f64409580b49607cd0a0f9aaada9 | |
parent | Merge branch 'jt/fetch-tips-in-partial-clone' (diff) | |
parent | rev-parse: --show-superproject-working-tree should work during a merge (diff) | |
download | tgif-d152a74e2584dd0e235c9bcc97ef6a9ed239994a.tar.xz |
Merge branch 'sm/show-superproject-while-conflicted'
A corner-case bugfix.
* sm/show-superproject-while-conflicted:
rev-parse: --show-superproject-working-tree should work during a merge
-rw-r--r-- | submodule.c | 2 | ||||
-rwxr-xr-x | t/t1500-rev-parse.sh | 16 |
2 files changed, 17 insertions, 1 deletions
diff --git a/submodule.c b/submodule.c index 25c6e5d5b9..d9d3046689 100644 --- a/submodule.c +++ b/submodule.c @@ -1886,7 +1886,7 @@ const char *get_superproject_working_tree(void) * We're only interested in the name after the tab. */ super_sub = strchr(sb.buf, '\t') + 1; - super_sub_len = sb.buf + sb.len - super_sub - 1; + super_sub_len = strlen(super_sub); if (super_sub_len > cwd_len || strcmp(&cwd[cwd_len - super_sub_len], super_sub)) diff --git a/t/t1500-rev-parse.sh b/t/t1500-rev-parse.sh index 5c715fe2cf..01abee533d 100755 --- a/t/t1500-rev-parse.sh +++ b/t/t1500-rev-parse.sh @@ -142,6 +142,22 @@ test_expect_success 'showing the superproject correctly' ' git -C super submodule add ../sub dir/sub && echo $(pwd)/super >expect && git -C super/dir/sub rev-parse --show-superproject-working-tree >out && + test_cmp expect out && + + test_commit -C super submodule_add && + git -C super checkout -b branch1 && + git -C super/dir/sub checkout -b branch1 && + test_commit -C super/dir/sub branch1_commit && + git -C super add dir/sub && + test_commit -C super branch1_commit && + git -C super checkout -b branch2 master && + git -C super/dir/sub checkout -b branch2 master && + test_commit -C super/dir/sub branch2_commit && + git -C super add dir/sub && + test_commit -C super branch2_commit && + test_must_fail git -C super merge branch1 && + + git -C super/dir/sub rev-parse --show-superproject-working-tree >out && test_cmp expect out ' |