зеркало из https://github.com/microsoft/git.git
Merge branch 'jk/proto-v2-ref-prefix-fix'
"git ls-remote $there foo" was broken by recent update for the protocol v2 and stopped showing refs that match 'foo' that are not refs/{heads,tags}/foo, which has been fixed. * jk/proto-v2-ref-prefix-fix: ls-remote: pass heads/tags prefixes to transport ls-remote: do not send ref prefixes for patterns
This commit is contained in:
Коммит
81c365bbd1
|
@ -88,18 +88,15 @@ int cmd_ls_remote(int argc, const char **argv, const char *prefix)
|
||||||
int i;
|
int i;
|
||||||
pattern = xcalloc(argc, sizeof(const char *));
|
pattern = xcalloc(argc, sizeof(const char *));
|
||||||
for (i = 1; i < argc; i++) {
|
for (i = 1; i < argc; i++) {
|
||||||
const char *glob;
|
|
||||||
pattern[i - 1] = xstrfmt("*/%s", argv[i]);
|
pattern[i - 1] = xstrfmt("*/%s", argv[i]);
|
||||||
|
|
||||||
glob = strchr(argv[i], '*');
|
|
||||||
if (glob)
|
|
||||||
argv_array_pushf(&ref_prefixes, "%.*s",
|
|
||||||
(int)(glob - argv[i]), argv[i]);
|
|
||||||
else
|
|
||||||
expand_ref_prefix(&ref_prefixes, argv[i]);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (flags & REF_TAGS)
|
||||||
|
argv_array_push(&ref_prefixes, "refs/tags/");
|
||||||
|
if (flags & REF_HEADS)
|
||||||
|
argv_array_push(&ref_prefixes, "refs/heads/");
|
||||||
|
|
||||||
remote = remote_get(dest);
|
remote = remote_get(dest);
|
||||||
if (!remote) {
|
if (!remote) {
|
||||||
if (dest)
|
if (dest)
|
||||||
|
|
|
@ -302,4 +302,22 @@ test_expect_success 'ls-remote works outside repository' '
|
||||||
nongit git ls-remote dst.git
|
nongit git ls-remote dst.git
|
||||||
'
|
'
|
||||||
|
|
||||||
|
test_expect_success 'ls-remote patterns work with all protocol versions' '
|
||||||
|
git for-each-ref --format="%(objectname) %(refname)" \
|
||||||
|
refs/heads/master refs/remotes/origin/master >expect &&
|
||||||
|
git -c protocol.version=1 ls-remote . master >actual.v1 &&
|
||||||
|
test_cmp expect actual.v1 &&
|
||||||
|
git -c protocol.version=2 ls-remote . master >actual.v2 &&
|
||||||
|
test_cmp expect actual.v2
|
||||||
|
'
|
||||||
|
|
||||||
|
test_expect_success 'ls-remote prefixes work with all protocol versions' '
|
||||||
|
git for-each-ref --format="%(objectname) %(refname)" \
|
||||||
|
refs/heads/ refs/tags/ >expect &&
|
||||||
|
git -c protocol.version=1 ls-remote --heads --tags . >actual.v1 &&
|
||||||
|
test_cmp expect actual.v1 &&
|
||||||
|
git -c protocol.version=2 ls-remote --heads --tags . >actual.v2 &&
|
||||||
|
test_cmp expect actual.v2
|
||||||
|
'
|
||||||
|
|
||||||
test_done
|
test_done
|
||||||
|
|
Загрузка…
Ссылка в новой задаче