diff options
| author | Orgad Shaneh <[email protected]> | 2017-05-28 11:41:19 +0300 |
|---|---|---|
| committer | Orgad Shaneh <[email protected]> | 2017-05-29 07:19:20 +0000 |
| commit | 2307e4d2cce527a78fedf035db155f73c14790f4 (patch) | |
| tree | 509496e55f6531fe9b6645fb44f89530c8aa3d36 /src/plugins/git/gitplugin.cpp | |
| parent | bfd818b2b1ccf62571ac5b419a13b40e7a822c0c (diff) | |
Git: Prevent * in branch/remote names
Change-Id: I8934352359710e1890a04310c22086f80dd4a7cd
Reviewed-by: Eike Ziller <[email protected]>
Reviewed-by: André Hartmann <[email protected]>
Diffstat (limited to 'src/plugins/git/gitplugin.cpp')
| -rw-r--r-- | src/plugins/git/gitplugin.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/plugins/git/gitplugin.cpp b/src/plugins/git/gitplugin.cpp index 4e300624249..1fa2bcb37ce 100644 --- a/src/plugins/git/gitplugin.cpp +++ b/src/plugins/git/gitplugin.cpp @@ -190,6 +190,7 @@ QString GitPlugin::invalidBranchAndRemoteNamePattern() "|//" // no double slash "|^[/-]" // no leading slash or dash "|\"" // no quotes + "|\\*" // no asterisk ); } |
