Skip to content

Instantly share code, notes, and snippets.

@vladmeh
Last active February 27, 2025 22:45
Show Gist options
  • Select an option

  • Save vladmeh/d3e328e8c43a530a2a0dff84737175e3 to your computer and use it in GitHub Desktop.

Select an option

Save vladmeh/d3e328e8c43a530a2a0dff84737175e3 to your computer and use it in GitHub Desktop.
// vscode editor
$ git config --global core.editor "code --wait"
// checkout
$ git config --global alias.co checkout
$ git config --global alias.ch checkout
// branch
$ git config --global alias.br branch
$ git config --global alias.curb "rev-parse --abbrev-ref HEAD"
// commit
$ git config --global alias.ci commit
// status
$ git config --global alias.st status
// push (only CMD)
$ git config --global alias.pushall "!git remote | xargs -L1 git push --all"
$ git config --global alias.pushtags "!git remote | xargs -L1 git push --tags"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment