mirror of
https://github.com/git/git.git
synced 2024-10-30 22:07:53 +01:00
Merge branch 'jk/shell-no-repository-that-begins-with-dash' into maint-2.4
* jk/shell-no-repository-that-begins-with-dash: shell: disallow repo names beginning with dash
This commit is contained in:
commit
5a4ffdf587
1 changed files with 1 additions and 1 deletions
2
shell.c
2
shell.c
|
@ -13,7 +13,7 @@ static int do_generic_cmd(const char *me, char *arg)
|
|||
const char *my_argv[4];
|
||||
|
||||
setup_path();
|
||||
if (!arg || !(arg = sq_dequote(arg)))
|
||||
if (!arg || !(arg = sq_dequote(arg)) || *arg == '-')
|
||||
die("bad argument");
|
||||
if (!starts_with(me, "git-"))
|
||||
die("bad command");
|
||||
|
|
Loading…
Reference in a new issue