From d07033a0f0c4bc1a151eceb7179d227d81e528db Mon Sep 17 00:00:00 2001 From: Unknwon Date: Fri, 28 Aug 2015 18:49:44 +0800 Subject: [PATCH] fix 1093 --- models/repo.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/models/repo.go b/models/repo.go index 99be71651c..2a355e81e1 100644 --- a/models/repo.go +++ b/models/repo.go @@ -475,7 +475,7 @@ func initRepoCommit(tmpPath string, sig *git.Signature) (err error) { if _, stderr, err = process.ExecDir(-1, tmpPath, fmt.Sprintf("initRepoCommit(git commit): %s", tmpPath), "git", "commit", fmt.Sprintf("--author='%s <%s>'", sig.Name, sig.Email), - "-m", "Init commit"); err != nil { + "-m", "initial commit"); err != nil { return errors.New("git commit: " + stderr) }