Copied git commands from powershell ps1 profile

This commit is contained in:
yuriy 2023-11-22 00:34:01 -05:00
parent 3bc2b894c9
commit ad38ccbdfd

View File

@ -390,6 +390,9 @@ update() {
## Uncomment an alias if you want to use it.
##
################################################################################
alias ef='_open_files_for_editing' # 'ef' opens given file(s) for editing
# alias pacdiff=_Pacdiff
alias parus='paru -S'
@ -409,4 +412,10 @@ alias mvideos='/home/yuriy/Syncthing/Python/Tools/MergeVideoFilesTogether.py'
#alias everything=fo
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"
################################################################################