hub/commands/init.go

60 строки
1.1 KiB
Go

package commands
import (
"github.com/github/hub/github"
"github.com/github/hub/utils"
)
var cmdInit = &Command{
Run: gitInit,
GitExtension: true,
Usage: "init -g",
Short: "Create an empty git repository or reinitialize an existing one",
Long: `Create a git repository as with git-init(1) and add remote origin at
"git@github.com:USER/REPOSITORY.git"; USER is your GitHub username and
REPOSITORY is the current working directory's basename.
`,
}
func init() {
CmdRunner.Use(cmdInit)
}
/*
$ gh init -g
> git init
> git remote add origin git@github.com:USER/REPO.git
*/
func gitInit(command *Command, args *Args) {
if !args.IsParamsEmpty() {
err := transformInitArgs(args)
utils.Check(err)
}
}
func transformInitArgs(args *Args) error {
if !parseInitFlag(args) {
return nil
}
name, err := utils.DirName()
if err != nil {
return err
}
project := github.NewProject("", name, "")
url := project.GitURL("", "", true)
args.After("git", "remote", "add", "origin", url)
return nil
}
func parseInitFlag(args *Args) bool {
if i := args.IndexOfParam("-g"); i != -1 {
args.RemoveParam(i)
return true
}
return false
}