hub/commands/merge.go

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

2013-07-02 20:59:02 +04:00
package commands
2013-07-02 22:28:50 +04:00
import (
"fmt"
2014-04-01 04:09:13 +04:00
"regexp"
2014-02-10 20:22:36 +04:00
"github.com/github/hub/github"
"github.com/github/hub/utils"
2013-07-02 22:28:50 +04:00
)
2013-07-02 20:59:02 +04:00
var cmdMerge = &Command{
Run: merge,
GitExtension: true,
Usage: "merge <PULLREQ-URL>",
Long: `Merge a pull request with a message like the GitHub Merge Button.
## Examples:
$ hub merge https://github.com/jingweno/gh/pull/73
> git fetch git://github.com/jingweno/gh.git +refs/heads/feature:refs/remotes/jingweno/feature
> git merge jingweno/feature --no-ff -m "Merge pull request #73 from jingweno/feature..."
2013-07-02 20:59:02 +04:00
`,
}
func init() {
CmdRunner.Use(cmdMerge)
}
2013-07-02 20:59:02 +04:00
func merge(command *Command, args *Args) {
2013-07-02 22:56:45 +04:00
if !args.IsParamsEmpty() {
2013-07-02 22:28:50 +04:00
err := transformMergeArgs(args)
2013-07-05 03:18:28 +04:00
utils.Check(err)
2013-07-02 22:28:50 +04:00
}
}
func transformMergeArgs(args *Args) error {
2013-12-10 13:04:36 +04:00
words := args.Words()
if len(words) == 0 {
return nil
}
2013-12-11 10:05:26 +04:00
mergeURL := words[0]
url, err := github.ParseURL(mergeURL)
2013-12-10 13:04:36 +04:00
if err != nil {
return nil
}
pullURLRegex := regexp.MustCompile("^pull/(\\d+)")
projectPath := url.ProjectPath()
if !pullURLRegex.MatchString(projectPath) {
return nil
}
id := pullURLRegex.FindStringSubmatch(projectPath)[1]
2013-12-17 19:45:48 +04:00
gh := github.NewClient(url.Project.Host)
pullRequest, err := gh.PullRequest(url.Project, id)
2013-12-10 13:04:36 +04:00
if err != nil {
return err
}
branch := pullRequest.Head.Ref
headRepo := pullRequest.Head.Repo
if headRepo == nil {
return fmt.Errorf("Error: that fork is not available anymore")
2013-12-10 13:04:36 +04:00
}
u := url.GitURL(headRepo.Name, headRepo.Owner.Login, headRepo.Private)
mergeHead := fmt.Sprintf("%s/%s", headRepo.Owner.Login, branch)
2013-12-10 13:04:36 +04:00
ref := fmt.Sprintf("+refs/heads/%s:refs/remotes/%s", branch, mergeHead)
args.Before("git", "fetch", u, ref)
// Remove pull request URL
2013-12-11 10:05:26 +04:00
idx := args.IndexOfParam(mergeURL)
2013-12-10 13:04:36 +04:00
args.RemoveParam(idx)
mergeMsg := fmt.Sprintf("Merge pull request #%v from %s\n\n%s", id, mergeHead, pullRequest.Title)
2013-12-10 13:04:36 +04:00
args.AppendParams(mergeHead, "-m", mergeMsg)
2015-08-12 13:34:15 +03:00
if args.IndexOfParam("--ff-only") == -1 && args.IndexOfParam("--squash") == -1 && args.IndexOfParam("--ff") == -1 {
2013-12-10 13:04:36 +04:00
i := args.IndexOfParam("-m")
args.InsertParam(i, "--no-ff")
2013-07-02 22:28:50 +04:00
}
return nil
}