Last active
September 1, 2019 00:48
-
-
Save nmushegian/61a21d18857ff3a88b853e52e8bc4f5f to your computer and use it in GitHub Desktop.
bash words
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function cs { | |
cd $@ && ls | |
} | |
function gs { | |
git remote -v | |
git status $@ | |
} | |
function gca { | |
git commit add $@ | |
} | |
function gcm { | |
git commit -m "$@" | |
} | |
function gcam { | |
git commit -am "$@" | |
} | |
function gpush { | |
git push $@ | |
} | |
function gpus { | |
gpush $@ | |
} | |
function gpull { | |
git pull $@ | |
} | |
function gpul { | |
gpull $@ | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment