Skip to content

Instantly share code, notes, and snippets.

@nmushegian
Last active September 1, 2019 00:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nmushegian/61a21d18857ff3a88b853e52e8bc4f5f to your computer and use it in GitHub Desktop.
Save nmushegian/61a21d18857ff3a88b853e52e8bc4f5f to your computer and use it in GitHub Desktop.
bash words
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