Last active
February 27, 2025 22:45
-
-
Save vladmeh/d3e328e8c43a530a2a0dff84737175e3 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| // 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