diff options
author | Junio C Hamano <gitster@pobox.com> | 2018-09-27 11:53:39 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2018-09-27 11:53:39 -0700 |
commit | f84b9b09d40408cf91bbc500d9f190a7866c3e0f (patch) | |
tree | e8705a063e273b040200fd6d0032376f5a1612a4 /builtin/submodule--helper.c | |
parent | fe8321ec057f9231c26c29b364721568e58040f7 (diff) | |
parent | cae598d9980661a978e2df4fb338518f7bf09572 (diff) | |
download | git-f84b9b09d40408cf91bbc500d9f190a7866c3e0f.tar.gz |
Sync with 2.19.1
* maint:
Git 2.19.1
Git 2.18.1
Git 2.17.2
fsck: detect submodule paths starting with dash
fsck: detect submodule urls starting with dash
Git 2.16.5
Git 2.15.3
Git 2.14.5
submodule-config: ban submodule paths that start with a dash
submodule-config: ban submodule urls that start with dash
submodule--helper: use "--" to signal end of clone options
Diffstat (limited to 'builtin/submodule--helper.c')
-rw-r--r-- | builtin/submodule--helper.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/builtin/submodule--helper.c b/builtin/submodule--helper.c index 40844870cf..247881189f 100644 --- a/builtin/submodule--helper.c +++ b/builtin/submodule--helper.c @@ -1233,6 +1233,7 @@ static int clone_submodule(const char *path, const char *gitdir, const char *url if (gitdir && *gitdir) argv_array_pushl(&cp.args, "--separate-git-dir", gitdir, NULL); + argv_array_push(&cp.args, "--"); argv_array_push(&cp.args, url); argv_array_push(&cp.args, path); |