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",
|
|
|
|
Short: "Join two or more development histories (branches) together",
|
|
|
|
Long: `Merge the pull request with a commit message that includes the pull request
|
|
|
|
ID and title, similar to the GitHub Merge Button.
|
|
|
|
`,
|
|
|
|
}
|
|
|
|
|
2013-12-30 02:18:14 +04:00
|
|
|
func init() {
|
|
|
|
CmdRunner.Use(cmdMerge)
|
|
|
|
}
|
|
|
|
|
2013-07-02 22:28:50 +04:00
|
|
|
/*
|
|
|
|
$ gh 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 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
|
|
|
|
}
|
|
|
|
|
|
|
|
user, branch := parseUserBranchFromPR(pullRequest)
|
2014-04-01 04:09:13 +04:00
|
|
|
if pullRequest.Head.Repo == nil {
|
2013-12-10 13:04:36 +04:00
|
|
|
return fmt.Errorf("Error: %s's fork is not available anymore", user)
|
|
|
|
}
|
|
|
|
|
2014-04-13 07:13:16 +04:00
|
|
|
u := url.GitURL(pullRequest.Head.Repo.Name, user, pullRequest.Head.Repo.Private)
|
2013-12-10 13:04:36 +04:00
|
|
|
mergeHead := fmt.Sprintf("%s/%s", user, branch)
|
|
|
|
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)
|
|
|
|
|
2014-09-11 16:16:23 +04:00
|
|
|
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-02-07 03:04:38 +03:00
|
|
|
if args.IndexOfParam("--ff-only") == -1 && args.IndexOfParam("--squash") == -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
|
|
|
|
}
|