Last active
August 24, 2025 15:59
-
-
Save gyli/22462c10c3c11656e2a98e9f9549beca to your computer and use it in GitHub Desktop.
alias
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 gaa='git add .' | |
| alias gb='git branch' | |
| alias gc='git checkout' | |
| alias gcb='git checkout -b' | |
| alias gdc='git diff main...' | |
| alias gps='git push' | |
| alias gpss='git push -u origin $(git symbolic-ref --short HEAD)' | |
| alias gpl='git pull' | |
| alias gd='git diff' | |
| alias gcm='git commit -m' | |
| alias gcms='git checkout main' | |
| # Arc alias | |
| alias ad='arc diff' | |
| alias al='arc land --onto main' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment