glab-mr
Installation
SKILL.md
glab mr
Create, view, and manage GitLab merge requests.
Quick start
# Create MR from current branch
glab mr create --fill
# Create or update with a multi-line description from a file
glab mr create --title "Fix login bug" --description-file description.md
glab mr update 123 --description-file description.md
# Attach local files to a description
glab mr create --title "Fix login bug" --description "Before and after:" \
--attach ./before.png --attach ./after.png
glab mr update 123 --attach ./latest.png