Created
July 15, 2024 19:30
-
-
Save adam-edison/41bd4a5a8ee8ff9b0fff01e9b56e2a4b to your computer and use it in GitHub Desktop.
funny git aliases
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
alias ga="git add ." | |
alias gc="git commit" | |
alias gcm="git commit -m" | |
alias gg="git add . && git commit -m" | |
alias gca="git commit --amend" | |
alias gco="git checkout" | |
alias gp="git push" | |
alias gpo="git push origin" | |
alias yeet="git push origin" | |
alias gplo="git pull origin" | |
alias yoink="git pull origin" | |
alias gs="git stash" | |
alias gsa="git stash apply" | |
alias gsc="git stash clear" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment