From a8d4d6373e8c062ecd81a26ff3f878694319b723 Mon Sep 17 00:00:00 2001 From: Marc Beninca Date: Sun, 14 May 2023 18:57:15 +0200 Subject: [PATCH] gcp --- bash/alias/git.sh | 17 ++++++++++++++--- 1 file changed, 14 insertions(+), 3 deletions(-) diff --git a/bash/alias/git.sh b/bash/alias/git.sh index be3ed61..b4ec3a0 100644 --- a/bash/alias/git.sh +++ b/bash/alias/git.sh @@ -91,13 +91,24 @@ alias gcod='git checkout dev' alias gcof='git checkout f' # pick a commit -alias gcp='git cherry-pick' +alias gcp="\ +git \ +cherry-pick \ +" # abort the commit pick -alias gcpa='git cherry-pick --abort' +alias gcpa="\ +git \ +cherry-pick \ +--abort \ +" # continue the commit pick -alias gcpc='git cherry-pick --continue' +alias gcpc="\ +git \ +cherry-pick \ +--continue \ +" # configure the user name alias gcun='git config user.name'