aboutsummaryrefslogtreecommitdiffstats
path: root/models/repo.go
diff options
context:
space:
mode:
authorLFlare <amosng1@gmail.com>2016-08-30 02:31:12 +0800
committer无闻 <u@gogs.io>2016-08-29 11:31:12 -0700
commit3738b6399eb360fef3f987e8cb9d0121f080ed61 (patch)
treebfd058801694bf61e386120a98fc226726292c0f /models/repo.go
parent62b0dc4853d3c8147c5ec164e9aba452f95259b8 (diff)
downloadgitea-3738b6399eb360fef3f987e8cb9d0121f080ed61.tar.gz
gitea-3738b6399eb360fef3f987e8cb9d0121f080ed61.zip
Fixed typo (#3533)
Git convention has it capitalised.
Diffstat (limited to 'models/repo.go')
-rw-r--r--models/repo.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/models/repo.go b/models/repo.go
index a8cc47885f..bb1a9f75c0 100644
--- a/models/repo.go
+++ b/models/repo.go
@@ -877,7 +877,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", "initial commit"); err != nil {
+ "-m", "Initial commit"); err != nil {
return fmt.Errorf("git commit: %s", stderr)
}