Skip to content

Instantly share code, notes, and snippets.

@lucas-janon
Last active May 16, 2019 00:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lucas-janon/29b8a42465dba71f0b6bb6b0a99fbe2f to your computer and use it in GitHub Desktop.
Save lucas-janon/29b8a42465dba71f0b6bb6b0a99fbe2f to your computer and use it in GitHub Desktop.
~/.bash_profile
# rar
export PATH="/Applications/rar:${PATH}"
# shortcuts to folders
alias dt='cd /Users/lucasjanon/Desktop'
alias rt='cd ~/'
alias docs='cd /Users/lucasjanon/Documents'
alias shortcuts='cat ~/.bash_profile'
# command shortcuts
alias gs='git status'
alias ga='git add .'
gc () {
git commit -m "$1"
}
alias gp='git push'
acp () {
git add . && git commit -m "$1" && git push
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment