Created
August 5, 2018 15:37
-
-
Save roshangautam/580cdd2194f100b40f89469ca410e2fb to your computer and use it in GitHub Desktop.
dotfiles
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
if [ ! -S ~/.ssh/ssh_auth_sock ]; then | |
eval `ssh-agent` | |
ln -sf "$SSH_AUTH_SOCK" ~/.ssh/ssh_auth_sock | |
fi | |
export SSH_AUTH_SOCK=~/.ssh/ssh_auth_sock | |
ssh-add -l > /dev/null || ssh-add ~/.ssh/{yourusername} |
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
alias stt='/Applications/Sublime\ Text.app/Contents/SharedSupport/bin/subl' | |
alias gll="git log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit" | |
alias abort="git reset --hard HEAD && git clean -df" | |
alias a="php artisan" | |
export PATH="$PATH:$HOME/.composer/vendor/bin" | |
add-ssh-key | |
unsetopt nomatch |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment