feat(custom-commands): add gcmr command to create MR on github

This commit is contained in:
2026-01-13 14:51:08 +01:00
parent 3dc499aa86
commit 26355acb99

View File

@@ -162,6 +162,16 @@ function dbar() {
}
function gcmr() {
if [[ "$*" == "--draft" ]]
then
draft="--draft"
else
draft=""
fi
gh pr create -a "@me" --fill -y $draft
}
function cmr() {
if [[ "$*" == "--draft" ]]
then