]> source.dussan.org Git - gitea.git/commitdiff
fix 1093
authorUnknwon <u@gogs.io>
Fri, 28 Aug 2015 10:49:44 +0000 (18:49 +0800)
committerUnknwon <u@gogs.io>
Fri, 28 Aug 2015 10:49:44 +0000 (18:49 +0800)
models/repo.go

index 99be71651c133e4a2fa37cd5813b0a6ea5a7daaf..2a355e81e19bb2dce8e042532834202adbafc7a2 100644 (file)
@@ -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)
        }