git alias 配置别名,让命令更简洁,提高效率
git 配置别名的文件默认保存路径是 ~/.bashrc
,如果没有可以使用 touch ~/.bashrc
创建,然后把下面的代码复制进去,重启git bash或执行 source ~/.bashrc
生效 。
alias ll='ls -la'
alias gst='git status -sb'
alias ga='git add'
alias ga.='git add .'
alias gc='git commit -v'
alias gcc='git commit . -m update'
alias gl='git pull'
alias gp='git push'
alias cls='clear'
alias open='start'
alias glog="git log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit -- | less"
使用别名的效果
使用 gst
代替 git status
使用 glog
代替 git log