Last active
February 27, 2019 00:18
-
-
Save treelzebub/04bac9001ad5ccf8eae20ce82dac07f2 to your computer and use it in GitHub Desktop.
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 srcbash="source ~/.bash_profile" | |
alias cd..='cd ..' | |
alias grepc='grep -C 1' | |
alias g='git' | |
alias push='g push' | |
alias pp='g pull' | |
alias gc='g commit -am' | |
alias go='g checkout' | |
alias gs='g status' | |
alias gw="./gradlew" | |
alias STOP="gw --stop" | |
alias build="gw build" | |
alias clean="gw clean" | |
alias test="gw test" | |
alias gcb="gw clean build" | |
PATH=~/bin:$PATH |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment