alias glf='git log --simplify-by-decoration --oneline --decorate --name-status'
alias gl='git log --simplify-by-decoration --oneline --decorate'
alias glf='git log --simplify-by-decoration --oneline --decorate --name-status'
alias gll='git log'
alias gs='git status -s -b'
alias gss='git status'
alias ga='git add'
alias gcm='git commit'
alias gc='git checkout'
alias gpl='git pull origin'
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
| #!/bin/sh | |
| branch="`git rev-parse --abbrev-ref HEAD`" | |
| echo "[branch:"$branch"]" >> $1 |
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 l='ls -lhtaGp' | |
| alias ll='l' | |
| alias wget='curl -O' | |
| alias gllf='git log --simplify-by-decoration --oneline --decorate --name-status' | |
| alias gll='git log --simplify-by-decoration --oneline --decorate' | |
| alias gl='git log' | |
| alias glf='git log --name-status' | |
| alias gs='git status -s -b' | |
| alias gss='git status' | |
| alias ga='git add' |