Skip to content

Instantly share code, notes, and snippets.

Created September 20, 2011 19:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/1230038 to your computer and use it in GitHub Desktop.
Save anonymous/1230038 to your computer and use it in GitHub Desktop.
amckinley2MBP15-2:~ amckinley$ git clone https://github.com/mathiasbynens/dotfiles.git && cd dotfiles && ./bootstrap.sh
Cloning into dotfiles...
remote: Counting objects: 144, done.
remote: Compressing objects: 100% (93/93), done.
remote: Total 144 (delta 83), reused 103 (delta 46)
Receiving objects: 100% (144/144), 18.62 KiB, done.
Resolving deltas: 100% (83/83), done.
Already up-to-date.
This may overwrite existing files in your home directory. Are you sure? (y/n) n
amckinley2MBP15-2:dotfiles amckinley$ cat .aliases
# Easier navigation: .., ..., ~ and -
alias ..="cd .."
alias ...="cd ../.."
alias ~="cd ~" # `cd` is probably faster to type though
alias -- -="cd -"
# List all files colorized in long format, including dot files
alias la="ls -Gla"
# List only directories
alias lsd='ls -l | grep "^d"'
# Undo a `git push`
alias undopush="git push -f origin HEAD^:master"
<snip>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment