Skip to content
Snippets Groups Projects
  1. Mar 19, 2020
  2. Mar 17, 2020
  3. Mar 13, 2020
  4. Mar 06, 2020
  5. Feb 27, 2020
  6. Feb 18, 2020
  7. Jan 06, 2020
  8. Dec 19, 2019
  9. Dec 03, 2019
  10. Oct 31, 2019
  11. Oct 28, 2019
  12. Oct 23, 2019
  13. Oct 22, 2019
  14. Oct 16, 2019
  15. Oct 11, 2019
  16. Oct 08, 2019
  17. Oct 03, 2019
  18. Sep 29, 2019
  19. Sep 25, 2019
  20. Sep 18, 2019
  21. Sep 10, 2019
  22. Sep 06, 2019
  23. Sep 04, 2019
    • Christian Couder's avatar
      Support adding and removing labels w/ push opts · f00db0c3
      Christian Couder authored
      MergeRequests::PushOptionsHandlerService has been updated to allow
      adding and removing labels to a merge request using git push options.
      
      To create a new merge request and add 2 labels to it:
      
            git push -u origin -o merge_request.create \
              -o merge_request.label="My label 1" \
              -o merge_request.label="My label 2"
      
      To update an existing merge request and remove a label while
      adding a different label:
      
            git push -u origin -o merge_request.label="My added label" \
              -o merge_request.unlabel="My removed label"
      
      Issue https://gitlab.com/gitlab-org/gitlab-ce/issues/64320
      f00db0c3
  24. Sep 02, 2019
  25. Aug 28, 2019
  26. Aug 22, 2019
  27. Aug 20, 2019
  28. Aug 15, 2019
  29. Aug 14, 2019
  30. Aug 13, 2019
  31. Aug 08, 2019
  32. Jul 24, 2019
    • Christian Couder's avatar
      Support title and desc on merge w/ push option · 7cf4bf84
      Christian Couder authored
      MergeRequests::PushOptionsHandlerService has been updated to allow
      creating and updating merge requests with the `title` and
      `description` set using git push options.
      
      To create a new merge request and set its title and description:
      
            git push -u origin -o merge_request.create \
              -o merge_request.title="My title" \
              -o merge_request.description="My description"
      
      To update an existing merge request and set its title and
      description:
      
            git push -u origin -o merge_request.title="My title" \
              -o merge_request.description="My description"
      
      Issue https://gitlab.com/gitlab-org/gitlab-ce/issues/64320
      7cf4bf84
  33. Jul 22, 2019
  34. Jul 19, 2019
  35. Jul 18, 2019
  36. Jul 17, 2019
    • Christian Couder's avatar
      Support rm src branch on merge w/ push option · 8256d407
      Christian Couder authored
      MergeRequests::PushOptionsHandlerService has been updated to allow
      creating and updating merge requests with the
      `remove_source_branch` set using git push options.
      
      To create a new merge request and set it to remove the source branch
      when it is merged:
      
        git push -u origin -o merge_request.create \
          -o merge_request.remove_source_branch
      
      To update an existing merge request and set it to remove the source
      branch when it is merged:
      
        git push -u origin -o merge_request.remove_source_branch
      
      Issue https://gitlab.com/gitlab-org/gitlab-ce/issues/64320
      8256d407
  37. Jul 15, 2019
  38. Jul 10, 2019
  39. Jul 08, 2019
Loading