Skip to content

Instantly share code, notes, and snippets.

@tommymarshall
Created May 11, 2015 14:16
Show Gist options
  • Save tommymarshall/d989ead061ecc546d13f to your computer and use it in GitHub Desktop.
Save tommymarshall/d989ead061ecc546d13f to your computer and use it in GitHub Desktop.
My Aliases
# Just writing `p` is so much faster
alias p="gulp"
# And for Grunt
alias u="grunt"
# Server the current directory at localhost:8884
alias simpleserver="python -m SimpleHTTPServer 8884"
# Copy my public key to clipboard
alias sshkey="cat ~/.ssh/id_rsa.pub | pbcopy && echo 'Copied to clipboard.'"
# Easy editing my zshrc file
alias zshrc="subl ~/.zshrc"
# Stage files for committing and add a message. Usage: `gca "[fix] IE10 overflow issue - #123"`
alias gca="git commit -am"
# Open current directory in Sublime Text
alias so="subl ."
# Of course...
alias be="bundle exec"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment