Skip to content

Instantly share code, notes, and snippets.

@mr21
Last active August 29, 2015 14:06
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 mr21/9233a81e0757dc215e4b to your computer and use it in GitHub Desktop.
Save mr21/9233a81e0757dc215e4b to your computer and use it in GitHub Desktop.
#!/bin/bash
export PS1="\[\e[00;32m\]\w>\[\e[0m\]"
source ~/GitHub/GitFast/gitfast.sh
eval `ssh-agent -s`
ssh-add ~/.ssh/id_rsa
alias ls='ls --color=auto'
alias ll='ls -lh'
alias la='ls -la'
alias l='clear; ls'
alias grep='grep -rn'
# directory
alias gh='cd ~/GitHub; l'
alias ..='cd ..; l'
alias ...='cd ../..; l'
alias ....='cd ../../..; l'
alias .....='cd ../../../..; l'
alias ......='cd ../../../../..; l'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment