Skip to content

Instantly share code, notes, and snippets.

View is-andrade's full-sized avatar

Igor Souza Andrade is-andrade

  • Brazil
View GitHub Profile
@is-andrade
is-andrade / development_aliases.sh
Last active May 13, 2022 17:27
Terminal Aliases for software development
## 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