/commands/merge.go

http://github.com/defunkt/hub · Go · 100 lines · 82 code · 17 blank · 1 comment · 20 complexity · 4c5266102e796e335f59637880c23e3c MD5 · raw file

  1. package commands
  2. import (
  3. "fmt"
  4. "regexp"
  5. "github.com/github/hub/v2/github"
  6. "github.com/github/hub/v2/utils"
  7. )
  8. var cmdMerge = &Command{
  9. Run: merge,
  10. GitExtension: true,
  11. Usage: "merge <PULLREQ-URL>",
  12. Long: `Merge a pull request locally with a message like the GitHub Merge Button.
  13. This creates a local merge commit in the current branch, but does not actually
  14. change the state of the pull request. However, the pull request will get
  15. auto-closed and marked as "merged" as soon as the newly created merge commit is
  16. pushed to the default branch of the remote repository.
  17. ## Examples:
  18. $ hub merge https://github.com/jingweno/gh/pull/73
  19. > git fetch origin refs/pull/73/head
  20. > git merge FETCH_HEAD --no-ff -m "Merge pull request #73 from jingweno/feature..."
  21. ## See also:
  22. hub-checkout(1), hub(1), git-merge(1)
  23. `,
  24. }
  25. func init() {
  26. CmdRunner.Use(cmdMerge)
  27. }
  28. func merge(command *Command, args *Args) {
  29. if !args.IsParamsEmpty() {
  30. err := transformMergeArgs(args)
  31. utils.Check(err)
  32. }
  33. }
  34. func transformMergeArgs(args *Args) error {
  35. words := args.Words()
  36. if len(words) == 0 {
  37. return nil
  38. }
  39. mergeURL := words[0]
  40. url, err := github.ParseURL(mergeURL)
  41. if err != nil {
  42. return nil
  43. }
  44. pullURLRegex := regexp.MustCompile("^pull/(\\d+)")
  45. projectPath := url.ProjectPath()
  46. if !pullURLRegex.MatchString(projectPath) {
  47. return nil
  48. }
  49. id := pullURLRegex.FindStringSubmatch(projectPath)[1]
  50. gh := github.NewClient(url.Project.Host)
  51. pullRequest, err := gh.PullRequest(url.Project, id)
  52. if err != nil {
  53. return err
  54. }
  55. repo, err := github.LocalRepo()
  56. if err != nil {
  57. return err
  58. }
  59. remote, err := repo.RemoteForRepo(pullRequest.Base.Repo)
  60. if err != nil {
  61. return err
  62. }
  63. branch := pullRequest.Head.Ref
  64. headRepo := pullRequest.Head.Repo
  65. if headRepo == nil {
  66. return fmt.Errorf("Error: that fork is not available anymore")
  67. }
  68. args.Before("git", "fetch", remote.Name, fmt.Sprintf("refs/pull/%s/head", id))
  69. // Remove pull request URL
  70. idx := args.IndexOfParam(mergeURL)
  71. args.RemoveParam(idx)
  72. mergeMsg := fmt.Sprintf("Merge pull request #%s from %s/%s\n\n%s", id, headRepo.Owner.Login, branch, pullRequest.Title)
  73. args.AppendParams("FETCH_HEAD", "-m", mergeMsg)
  74. if args.IndexOfParam("--ff-only") == -1 && args.IndexOfParam("--squash") == -1 && args.IndexOfParam("--ff") == -1 {
  75. i := args.IndexOfParam("-m")
  76. args.InsertParam(i, "--no-ff")
  77. }
  78. return nil
  79. }