Skip to content

Instantly share code, notes, and snippets.

@cryptiklemur
Created October 16, 2018 22:19
Show Gist options
  • Save cryptiklemur/9e3af970fff659050f47b8f5e9c70b09 to your computer and use it in GitHub Desktop.
Save cryptiklemur/9e3af970fff659050f47b8f5e9c70b09 to your computer and use it in GitHub Desktop.
Handy git functions
pull() {
git pull ${1:-origin} ${2:-HEAD}
}
push() {
git push ${1:-origin} ${2:-HEAD}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment