From 5da8db2173b9e9b3ed2b81edc802a7f09dd3c538 Mon Sep 17 00:00:00 2001 From: Chris Guest Date: Fri, 24 May 2024 10:00:50 +0100 Subject: [PATCH] docs(git): :memo: Add about push options --- 36_git/sections/GITLAB.md | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 36_git/sections/GITLAB.md diff --git a/36_git/sections/GITLAB.md b/36_git/sections/GITLAB.md new file mode 100644 index 0000000..3e870e0 --- /dev/null +++ b/36_git/sections/GITLAB.md @@ -0,0 +1,15 @@ +# GITLAB + +Show some `gitlab` features. + +## Push Options + +Push options allow you to send commands to the server. These allow you to create PRs or Skip CI. + +```sh +git push -o merge_request.create -o merge_request.title "My MR" -o merge_request.description "My MR description" +``` + +## Resources + +* Push options [here](https://docs.gitlab.com/ee/user/project/push_options.html)