Last active
January 19, 2017 01:52
-
-
Save nickautomatic/3aba0e4c24e37972f057 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
| ## General: | |
| alias ll='ls -alFh --color' | |
| alias x='exit' | |
| ## Git: | |
| alias ga='git add' | |
| alias gb='git branch' | |
| alias gco='git checkout' | |
| alias gcm='git commit -m' | |
| alias gd='git diff' | |
| alias gl="git log --graph --date-order --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(yellow) %an %Creset' --abbrev-commit --date=relative" | |
| alias gm='git merge' | |
| alias gpl='git pull' | |
| alias gps='git push' | |
| alias gr='git remote' | |
| alias grb='git rebase' | |
| alias grs='git reset' | |
| alias gs='git status' | |
| ## FuelPHP: | |
| alias oil='php oil' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment