diff --git a/internal/git/repository.go b/internal/git/repository.go index c1dec4b9..e782f340 100644 --- a/internal/git/repository.go +++ b/internal/git/repository.go @@ -30,7 +30,7 @@ var ( cmdAllFiles = []string{"git", "ls-files", "--cached"} cmdCreateStash = []string{"git", "stash", "create"} cmdStageFiles = []string{"git", "add"} - cmdRemotes = []string{"git", "branch", " --remotes"} + cmdRemotes = []string{"git", "branch", "--remotes"} cmdHideUnstaged = []string{"git", "checkout", "--force", "--"} )