Skip to content

Instantly share code, notes, and snippets.

@FlyteWizard
Last active March 17, 2019 19:41
Show Gist options
  • Save FlyteWizard/03cec23c3291dfb2de26456f18f70d37 to your computer and use it in GitHub Desktop.
Save FlyteWizard/03cec23c3291dfb2de26456f18f70d37 to your computer and use it in GitHub Desktop.
.bash_profile
# Setting Bash Profile Name
export PS1="🐶 \u \w \$ "
# Git Alias
alias ga="git add"
alias gc="git commit -m"
alias gp="git push"
alias gs="git status"
alias gcl="git clone"
alias gckb="git checkout -b"
alias gck="git checkout"
alias gm="git merge"
alias gpl="git pull"
# Homebrew Alias
alias brewbrew="brew update && brew upgrade && brew cleanup"
# Terminal Alias
alias c="clear"
alias desktop="cd ~/Desktop"
alias bash="open ~/.bash_profile"
alias reload="source ~/.bash_profile"
# Show All Files
alias showFiles="defaults write com.apple.finder AppleShowAllFiles YES; killall Finder /System/Library/CoreServices/Finder.app"
# Hide Hidden Files
alias hideFiles="defaults write com.apple.finder AppleShowAllFiles NO; killall Finder /System/Library/CoreServices/Finder.app"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment