hub/commands/create.go

152 строки
3.8 KiB
Go
Исходник Обычный вид История

2013-07-09 22:03:07 +04:00
package commands
2013-07-10 01:36:02 +04:00
import (
"fmt"
2014-03-10 01:42:06 +04:00
"strings"
2014-02-10 20:22:36 +04:00
"github.com/github/hub/git"
"github.com/github/hub/github"
"github.com/github/hub/ui"
2014-02-10 20:22:36 +04:00
"github.com/github/hub/utils"
2013-07-10 01:36:02 +04:00
)
2013-07-09 22:03:07 +04:00
var cmdCreate = &Command{
Run: create,
Usage: "create [-poc] [-d <DESCRIPTION>] [-h <HOMEPAGE>] [[<ORGANIZATION>/]<NAME>]",
Long: `Create a new repository on GitHub and add a git remote for it.
## Options:
-p, --private
Create a private repository.
-d, --description <DESCRIPTION>
A short description of the GitHub repository.
-h, --homepage <HOMEPAGE>
A URL with more information about the repository. Use this, for example, if
your project has an external website.
--remote-name <REMOTE>
Set the name for the new git remote (default: "origin").
-o, --browse
Open the new repository in a web browser.
-c, --copy
Put the URL of the new repository to clipboard instead of printing it.
[<ORGANIZATION>/]<NAME>
The name for the repository on GitHub (default: name of the current working
directory).
Optionally, create the repository within <ORGANIZATION>.
## Examples:
$ hub create
[ repo created on GitHub ]
> git remote add -f origin git@github.com:USER/REPO.git
$ hub create sinatra/recipes
[ repo created in GitHub organization ]
> git remote add -f origin git@github.com:sinatra/recipes.git
2016-01-24 18:50:01 +03:00
## See also:
hub-init(1), hub(1)
2013-07-09 22:03:07 +04:00
`,
}
2013-07-10 01:36:02 +04:00
func init() {
CmdRunner.Use(cmdCreate)
2013-07-10 01:36:02 +04:00
}
2013-07-09 22:03:07 +04:00
func create(command *Command, args *Args) {
2013-12-10 10:47:15 +04:00
_, err := git.Dir()
if err != nil {
err = fmt.Errorf("'create' must be run from inside a git repository")
utils.Check(err)
}
var newRepoName string
2013-07-10 01:36:02 +04:00
if args.IsParamsEmpty() {
dirName, err := git.WorkdirName()
2013-07-10 01:36:02 +04:00
utils.Check(err)
newRepoName = github.SanitizeProjectName(dirName)
2013-07-10 01:36:02 +04:00
} else {
2013-12-10 10:47:15 +04:00
newRepoName = args.FirstParam()
if newRepoName == "" {
utils.Check(command.UsageError(""))
}
2013-07-10 01:36:02 +04:00
}
config := github.CurrentConfig()
host, err := config.DefaultHost()
if err != nil {
utils.Check(github.FormatError("creating repository", err))
}
2013-12-10 10:47:15 +04:00
2014-03-26 04:18:30 +04:00
owner := host.User
2013-12-10 10:47:15 +04:00
if strings.Contains(newRepoName, "/") {
split := strings.SplitN(newRepoName, "/", 2)
owner = split[0]
newRepoName = split[1]
}
2014-03-26 04:18:30 +04:00
project := github.NewProject(owner, newRepoName, host.Host)
2013-12-17 19:45:48 +04:00
gh := github.NewClient(project.Host)
2013-12-10 10:47:15 +04:00
2019-01-18 03:34:44 +03:00
flagCreatePrivate := args.Flag.Bool("--private")
2018-08-28 21:59:56 +03:00
repo, err := gh.Repository(project)
if err == nil {
foundProject := github.NewProject(repo.FullName, "", project.Host)
if foundProject.SameAs(project) {
if !repo.Private && flagCreatePrivate {
err = fmt.Errorf("Repository '%s' already exists and is public", repo.FullName)
utils.Check(err)
} else {
ui.Errorln("Existing repository detected")
project = foundProject
}
} else {
repo = nil
}
2013-07-10 01:36:02 +04:00
} else {
repo = nil
}
if repo == nil {
2013-07-10 01:36:02 +04:00
if !args.Noop {
2019-01-18 03:34:44 +03:00
flagCreateDescription := args.Flag.Value("--description")
flagCreateHomepage := args.Flag.Value("--homepage")
2013-07-10 01:36:02 +04:00
repo, err := gh.CreateRepository(project, flagCreateDescription, flagCreateHomepage, flagCreatePrivate)
utils.Check(err)
2013-12-10 10:47:15 +04:00
project = github.NewProject(repo.FullName, "", project.Host)
2013-07-10 01:36:02 +04:00
}
}
2014-04-09 02:17:43 +04:00
localRepo, err := github.LocalRepo()
utils.Check(err)
originName := args.Flag.Value("--remote-name")
if originName == "" {
originName = "origin"
}
if originRemote, err := localRepo.RemoteByName(originName); err == nil {
originProject, err := originRemote.Project()
if err != nil || !originProject.SameAs(project) {
ui.Errorf(`A git remote named "%s" already exists and is set to push to '%s'.\n`, originRemote.Name, originRemote.PushURL)
}
} else {
2013-07-10 01:36:02 +04:00
url := project.GitURL("", "", true)
args.Before("git", "remote", "add", "-f", originName, url)
2013-07-10 01:36:02 +04:00
}
webUrl := project.WebURL("", "", "")
args.NoForward()
2019-01-18 03:34:44 +03:00
flagCreateBrowse := args.Flag.Bool("--browse")
flagCreateCopy := args.Flag.Bool("--copy")
printBrowseOrCopy(args, webUrl, flagCreateBrowse, flagCreateCopy)
2013-07-10 01:36:02 +04:00
}