gitlab-create-merge-request
13
总安装量
13
周安装量
#25255
全站排名
安装命令
npx skills add https://github.com/kentoje/dotfiles --skill gitlab-create-merge-request
Agent 安装分布
claude-code
10
opencode
10
gemini-cli
9
antigravity
9
windsurf
9
codex
9
Skill 文档
Create Merge Request
Create a GitLab merge request for the current branch targeting main.
Steps
-
Get the first commit message of the current branch (compared to main):
git log main..HEAD --reverse --format="%s" | head -n 1 -
Create the MR using glab:
glab mr create -t "<FIRST_COMMIT_MESSAGE>" -d "<SUMMARY_OF_WHAT_HAS_BEEN_DONE>" -b main --fill -y
Notes
- Ensure the branch has been pushed before running this command
- The MR title will be the first commit message of the branch