Skip to content

Instantly share code, notes, and snippets.

@InternetMedicineMan
Last active October 2, 2015 22:08
Show Gist options
  • Save InternetMedicineMan/962a9ee42de8190924b8 to your computer and use it in GitHub Desktop.
Save InternetMedicineMan/962a9ee42de8190924b8 to your computer and use it in GitHub Desktop.
My Aliases file for Bash
# General Mac Stuff
alias showFiles='defaults write com.apple.finder AppleShowAllFiles YES; killall Finder /System/Library/CoreServices/Finder.app'
alias hideFiles='defaults write com.apple.finder AppleShowAllFiles NO; killall Finder /System/Library/CoreServices/Finder.app'
alias lamp="curl -L -o 'install.sh' http://bit.ly/1hBfq57 && curl -L -o 'Vagrantfile' http://bit.ly/1mE3Qt9 && vagrant up"
alias web='cd /Volumes/Storage\ Drive/Webservers'
alias ls='ls -GFh'
# Git Stuff
alias ga='git add'
alias gaa='git add .'
alias gc='git commit -m '
alias gs='git status'
alias nah='git reset --hard;git clean -df;'
alias gl='git log --graph --pretty=format:'\''%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset'\'' --abbrev-commit'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment