Skip to content

Instantly share code, notes, and snippets.

@ktajpuri
Created June 10, 2019 12:46
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 ktajpuri/8cbadf0fca34c4b314d4852a247b5855 to your computer and use it in GitHub Desktop.
Save ktajpuri/8cbadf0fca34c4b314d4852a247b5855 to your computer and use it in GitHub Desktop.
useful aliases for bash
alias s='git status'
alias b='git branch'
alias p='git pull'
alias a='git add .'
co () { git checkout "$@"; }
m () { git commit -m "$@";}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment