This commit is contained in:
Jingwen Owen Ou 2013-12-18 10:56:46 -08:00
Родитель 6c7d48ef95
Коммит 7b8770d228
3 изменённых файлов: 22 добавлений и 0 удалений

Просмотреть файл

@ -90,6 +90,7 @@ func All() []*Command {
all = append(all, cmdAlias)
all = append(all, cmdVersion)
all = append(all, cmdHelp)
all = append(all, cmdUpdate)
return all
}

Просмотреть файл

@ -86,6 +86,7 @@ GitHub Commands:
issue Manipulate issues (beta)
See 'git help <command>' for more information on a specific command.
Run 'git update' to update to the latest version of gh.
`
func printUsage() {

20
commands/update.go Normal file
Просмотреть файл

@ -0,0 +1,20 @@
package commands
import (
"os"
)
var cmdUpdate = &Command{
Run: update,
Usage: "update",
Short: "Update gh",
Long: `Update gh with the latest version.
Examples:
git update
`,
}
func update(cmd *Command, args *Args) {
os.Exit(0)
}