A great Bash profile
This file contains 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
# always list date and size info | |
alias ll='ls -all' | |
# make sure you are on a protected branch and prome remote and local where no remote exists | |
alias gitclean='git checkout development; git branch | egrep -v "master|development" | xargs git branch -D' | |
# list all branch and remote branches | |
alias gitlist='git branch -a' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment