Created
March 14, 2016 08:58
-
-
Save llamerr/af2bc834f087d07faf42 to your computer and use it in GitHub Desktop.
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
# <----------------- My aliases -----------------> | |
alias gd="git difftool -y" | |
alias gdh="git difftool HEAD -y" | |
alias gdhh="git difftool HEAD^ -y" | |
alias gcmt="git commit -a -m WIP" | |
alias gs="git stash" | |
alias gsp="git stash pop" | |
alias gsl="git stash list" | |
alias vpn="sudo openvpn --config invigos.ovpn" | |
# </---------------- My aliases -----------------> | |
# start ssh-agent and add all keys | |
if [ -z "$SSH_AUTH_SOCK" ] ; then | |
eval `ssh-agent -s` | |
ssh-add | |
fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment