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
## All aliases/functions run on macOS, maybe some adaptation is needed for linux/windows. | |
###### GIT ###### | |
alias we='git status' ## just a quick way to do git status | |
alias wee='git status --short' ## same, but shorter visualization | |
alias gcom='git checkout master && git pull' ## checkout and pull on master | |
alias gcod='git checkout develop && git pull' ## checkout and pull on develop | |
alias cgit='cd /Users/andrade/Dev/Git' ## cd direct to git folder | |
alias gamend='git commit --amend -m' | |
alias lastcommits='git log --pretty=oneline' ## show last commits formated |