Allow spaces in remotes and check remote names for validity at creation time - fixes #171
This commit is contained in:
parent
6344c3051c
commit
4e952af614
2 changed files with 4 additions and 1 deletions
|
@ -498,11 +498,14 @@ func EditConfig() {
|
|||
for {
|
||||
fmt.Printf("name> ")
|
||||
name := ReadLine()
|
||||
parts := matcher.FindStringSubmatch(name + ":")
|
||||
switch {
|
||||
case name == "":
|
||||
fmt.Printf("Can't use empty name\n")
|
||||
case isDriveLetter(name):
|
||||
fmt.Printf("Can't use %q as it can be confused a drive letter\n", name)
|
||||
case len(parts) != 3 || parts[2] != "":
|
||||
fmt.Printf("Can't use %q as it has invalid characters in it %v\n", name, parts)
|
||||
default:
|
||||
NewRemote(name)
|
||||
break nameLoop
|
||||
|
|
Loading…
Reference in a new issue