mirror of https://github.com/go-gitea/gitea.git
ask for go get from code.gitea.io/gitea and change gogs to gitea on main file (#146)
This commit is contained in:
parent
5fc370e332
commit
e2aa991e10
9
main.go
9
main.go
|
@ -1,9 +1,10 @@
|
||||||
|
// Copyright 2016 The Gitea Authors. All rights reserved.
|
||||||
// Copyright 2014 The Gogs Authors. All rights reserved.
|
// Copyright 2014 The Gogs Authors. All rights reserved.
|
||||||
// Use of this source code is governed by a MIT-style
|
// Use of this source code is governed by a MIT-style
|
||||||
// license that can be found in the LICENSE file.
|
// license that can be found in the LICENSE file.
|
||||||
|
|
||||||
// Gogs (Go Git Service) is a painless self-hosted Git Service.
|
// Gitea (git with a cup of tea) is a painless self-hosted Git Service.
|
||||||
package main
|
package main // import "code.gitea.io/gitea"
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"log"
|
"log"
|
||||||
|
@ -25,8 +26,8 @@ func init() {
|
||||||
|
|
||||||
func main() {
|
func main() {
|
||||||
app := cli.NewApp()
|
app := cli.NewApp()
|
||||||
app.Name = "Gogs"
|
app.Name = "Gitea"
|
||||||
app.Usage = "Go Git Service: a painless self-hosted Git service"
|
app.Usage = "A painless self-hosted Git service"
|
||||||
app.Version = Version
|
app.Version = Version
|
||||||
app.Commands = []cli.Command{
|
app.Commands = []cli.Command{
|
||||||
cmd.CmdWeb,
|
cmd.CmdWeb,
|
||||||
|
|
Loading…
Reference in New Issue