summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--gitcommands.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/gitcommands.go b/gitcommands.go
index 6dbc41c28..dcd338136 100644
--- a/gitcommands.go
+++ b/gitcommands.go
@@ -492,7 +492,7 @@ func gitNewBranch(name string) (string, error) {
}
func gitDeleteBranch(branch string) (string, error) {
- return runCommand("git branch -d " + branch)
+ return runCommand("git branch -d " + branch)
}
func gitListStash() (string, error) {