MySQLTuner-perl/bashrc
Jean-Marie Renouard 6d3d15eb4d Update README with performance tips
Update README with version information around MySQL 5.5
Adding bashrc file with basic alias for git and directory listing
2018-09-22 05:04:28 +00:00

7 lines
216 B
Bash

alias gst='git status'
alias gcm='git commit -m'
alias gmh='git log --follow -p --'
alias ll='ls -ls'
alias lh='ls -lsh'
alias la='ls -lsa'
alias gam='git status | grep "modified" | cut -d: -f2 | xargs -n 1 git add'