Created
June 13, 2018 14:27
-
-
Save alastairhm/f55493f27caf99728c8729dc78907c2e to your computer and use it in GitHub Desktop.
This file contains 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 ..='cd ..' | |
alias ...='cd ../..' | |
alias ls='ls -G' | |
alias ll='ls -lG' | |
alias dir='ls -lG' | |
alias gits='git status' | |
alias gs='git status' | |
alias gl='git log' | |
alias ga='git add' | |
alias gd='git diff' | |
alias gita='git add' | |
alias gitc='git commit -m' | |
alias gitco='git checkout' | |
alias gpl='git pull' | |
alias gph='git push' | |
alias gba='git branch -a' | |
alias gg='git graph --all' | |
alias tmp='cd ~/tmp;ls -l' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment