Skip to content

Instantly share code, notes, and snippets.

@thetealpickle
Last active October 9, 2022 17:18
Show Gist options
  • Save thetealpickle/16fed2f398368c71fcda0dbe4c3c6542 to your computer and use it in GitHub Desktop.
Save thetealpickle/16fed2f398368c71fcda0dbe4c3c6542 to your computer and use it in GitHub Desktop.
THETEALPICKLE bash profile
## Aliases
# [A] bash profile
alias bp="vim ~/.bash_profile"
alias sbp="source ~/.bash_profile"
# [A] folder paths
## PRIVATE ##
# [A] git
alias g.="git add ."
alias gp="git push"
alias br="git branch"
alias gs="git status"
## Shortcut Methods
# [SM] git
gc() { git commit -m $1 }
gcr() { git commit -m "🔨 refactor: $1" }
gca() { git commit -m "🍑 add: $1" }
gcc() { git commit -m "🧼 clean: $1" }
gcb() { git commit -m "🐛 bug: $1" }
gct() { git commit -m "🧪 test: $1" }
gpu() { git push --set-upstream $1 $2 }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment