summaryrefslogtreecommitdiffstats
path: root/main.go
diff options
context:
space:
mode:
authorLunny Xiao <xiaolunwen@gmail.com>2016-11-11 21:56:35 +0800
committerSandro Santilli <strk@kbt.io>2016-11-11 14:56:35 +0100
commite2aa991e10ffd924a828ec149951f2f20eecead2 (patch)
treea55486eb4796ebbd115ed08bef4105e8fd3d6769 /main.go
parent5fc370e332171b8658caed771b48585576f11737 (diff)
downloadgitea-e2aa991e10ffd924a828ec149951f2f20eecead2.tar.gz
gitea-e2aa991e10ffd924a828ec149951f2f20eecead2.zip
ask for go get from code.gitea.io/gitea and change gogs to gitea on main file (#146)
Diffstat (limited to 'main.go')
-rw-r--r--main.go9
1 files changed, 5 insertions, 4 deletions
diff --git a/main.go b/main.go
index 4151441307..7670877f21 100644
--- a/main.go
+++ b/main.go
@@ -1,9 +1,10 @@
+// Copyright 2016 The Gitea Authors. All rights reserved.
// Copyright 2014 The Gogs Authors. All rights reserved.
// Use of this source code is governed by a MIT-style
// license that can be found in the LICENSE file.
-// Gogs (Go Git Service) is a painless self-hosted Git Service.
-package main
+// Gitea (git with a cup of tea) is a painless self-hosted Git Service.
+package main // import "code.gitea.io/gitea"
import (
"log"
@@ -25,8 +26,8 @@ func init() {
func main() {
app := cli.NewApp()
- app.Name = "Gogs"
- app.Usage = "Go Git Service: a painless self-hosted Git service"
+ app.Name = "Gitea"
+ app.Usage = "A painless self-hosted Git service"
app.Version = Version
app.Commands = []cli.Command{
cmd.CmdWeb,