Created
October 2, 2019 08:05
-
-
Save hirejohnsalcedo/c7f25801610acba4713a1c0c2e34f5e1 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 sauce="source ~/.zshrc" | |
alias gc="git checkout" | |
alias gcb="git checkout -b" | |
alias gp='git push -u origin $(git branch | grep \* | cut -d " " -f2)' | |
alias glog="git log --pretty=oneline" | |
alias gbd="git branch -d" | |
alias gbD="git branch -D" | |
alias gb="git branch" | |
alias l="ls -la" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment