aboutsummaryrefslogtreecommitdiff
path: root/internal
diff options
context:
space:
mode:
Diffstat (limited to 'internal')
-rw-r--r--internal/db/repo.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/db/repo.go b/internal/db/repo.go
index 9f17b9a5..e044712b 100644
--- a/internal/db/repo.go
+++ b/internal/db/repo.go
@@ -923,7 +923,7 @@ func initRepoCommit(tmpPath string, sig *git.Signature) (err error) {
if _, stderr, err = process.ExecDir(-1,
tmpPath, fmt.Sprintf("initRepoCommit (git push): %s", tmpPath),
- "git", "push", "origin", "master"); err != nil {
+ "git", "push"); err != nil {
return fmt.Errorf("git push: %s", stderr)
}
return nil