/commands/merge.go

https://gitlab.com/shengwenzhu/hub · Go · 86 lines · 65 code · 15 blank · 6 comment · 14 complexity · 60aac6f224e798a892f66cd35bd3dadc MD5 · raw file

  1. package commands
  2. import (
  3. "fmt"
  4. "regexp"
  5. "github.com/github/hub/github"
  6. "github.com/github/hub/utils"
  7. )
  8. var cmdMerge = &Command{
  9. Run: merge,
  10. GitExtension: true,
  11. Usage: "merge PULLREQ-URL",
  12. Short: "Join two or more development histories (branches) together",
  13. Long: `Merge the pull request with a commit message that includes the pull request
  14. ID and title, similar to the GitHub Merge Button.
  15. `,
  16. }
  17. func init() {
  18. CmdRunner.Use(cmdMerge)
  19. }
  20. /*
  21. $ gh merge https://github.com/jingweno/gh/pull/73
  22. > git fetch git://github.com/jingweno/gh.git +refs/heads/feature:refs/remotes/jingweno/feature
  23. > git merge jingweno/feature --no-ff -m 'Merge pull request #73 from jingweno/feature...'
  24. */
  25. func merge(command *Command, args *Args) {
  26. if !args.IsParamsEmpty() {
  27. err := transformMergeArgs(args)
  28. utils.Check(err)
  29. }
  30. }
  31. func transformMergeArgs(args *Args) error {
  32. words := args.Words()
  33. if len(words) == 0 {
  34. return nil
  35. }
  36. mergeURL := words[0]
  37. url, err := github.ParseURL(mergeURL)
  38. if err != nil {
  39. return nil
  40. }
  41. pullURLRegex := regexp.MustCompile("^pull/(\\d+)")
  42. projectPath := url.ProjectPath()
  43. if !pullURLRegex.MatchString(projectPath) {
  44. return nil
  45. }
  46. id := pullURLRegex.FindStringSubmatch(projectPath)[1]
  47. gh := github.NewClient(url.Project.Host)
  48. pullRequest, err := gh.PullRequest(url.Project, id)
  49. if err != nil {
  50. return err
  51. }
  52. branch := pullRequest.Head.Ref
  53. headRepo := pullRequest.Head.Repo
  54. if headRepo == nil {
  55. return fmt.Errorf("Error: that fork is not available anymore")
  56. }
  57. u := url.GitURL(headRepo.Name, headRepo.Owner.Login, headRepo.Private)
  58. mergeHead := fmt.Sprintf("%s/%s", headRepo.Owner.Login, branch)
  59. ref := fmt.Sprintf("+refs/heads/%s:refs/remotes/%s", branch, mergeHead)
  60. args.Before("git", "fetch", u, ref)
  61. // Remove pull request URL
  62. idx := args.IndexOfParam(mergeURL)
  63. args.RemoveParam(idx)
  64. mergeMsg := fmt.Sprintf("Merge pull request #%v from %s\n\n%s", id, mergeHead, pullRequest.Title)
  65. args.AppendParams(mergeHead, "-m", mergeMsg)
  66. if args.IndexOfParam("--ff-only") == -1 && args.IndexOfParam("--squash") == -1 {
  67. i := args.IndexOfParam("-m")
  68. args.InsertParam(i, "--no-ff")
  69. }
  70. return nil
  71. }