From 7b5fda5b841ba02e10b7d337d7b9eefabddef2f4 Mon Sep 17 00:00:00 2001 From: yuriy Date: Wed, 22 Nov 2023 00:47:54 -0500 Subject: [PATCH] "" --- .bashrc | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/.bashrc b/.bashrc index b6f19b0..a0bcb1b 100644 --- a/.bashrc +++ b/.bashrc @@ -416,6 +416,14 @@ export PATH="$HOME/.local/bin:$PATH" # Git Aliases alias gac="git add .;git commit -m" -alias gacc="{git add .;git commit -m '$1' ; git push" +alias gacc="git add . ; git commit -m '${1}' ; git push" +alias gpm="git push origin master" +alias pull="git pull" +alias gpp="git pull" +alias gl="git log" +alias glo="git log --oneline" +alias gch="git checkout ${1}" + + ################################################################################