Git快捷指令配置
通过创建命令别名可以减少命令输入量,有几种方式进行设置
配置文件定义
修改配置文件 ~/.gitconfig 并添加以下命令别名配置段
[alias]
a = add .
c = commit
s = status
l = log
b = branch
现在可以使用 git a
实现 git add .
一样的效果了。
系统配置定义
window 用户可以修改~/.bashrc
或 ~/.bash_profile
文件。
mac/linux 修改 ~/.zshrc
文件中定义常用的别名指令,需要首先安装 zsh 命令行扩展
alias gs="git status"
alias gc="git commit -m "
alias gl="git log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit"
alias gb="git branch"
alias ga="git add -A"
alias go="git checkout"
alias gp="git push;git push github"
alias gp="git push & git push github"
命令行直接使用 gs
即可以实现 git status
一样的效果了。同时可以实现多库提交。
window 系统需要使用 git for window 中的
Git Base
软件使用配置的快捷命令