Created
May 11, 2015 14:16
-
-
Save tommymarshall/d989ead061ecc546d13f to your computer and use it in GitHub Desktop.
My Aliases
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
# 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