Last active
March 17, 2019 19:41
-
-
Save FlyteWizard/03cec23c3291dfb2de26456f18f70d37 to your computer and use it in GitHub Desktop.
.bash_profile
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
# 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