Last active
October 25, 2019 13:40
-
-
Save dominik-ba/0808bbc2b82c4fa4dee4f6986981629d to your computer and use it in GitHub Desktop.
bash 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
# Aliases | |
alias g='git' | |
alias gst='git status' | |
alias gclean="git pull --all -p && git branch -vv | grep 'origin/.*: gone]' | awk '{print $1}' | xargs git branch -d" | |
alias gp='git push' | |
alias cdrep='cd /c/repositories/' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment