Git从零开始 使用技巧1–快捷命令配置 发表于 2016-12-12 当下载好Git后,需要进行一些常用的初始化配置,例如:快捷命令的配置,git环境的配置等。这里,我把常用的需要配置的命令列举在下面。 123456789101112131415161718192021222324#配置使用git仓库的人员姓名git config --global user.name "Your Name Comes Here" #配置使用git仓库的人员emailgit config --global user.email "you@yourdomain.example.com" #配置到缓存 默认15分钟git config --global credential.helper cache #修改缓存时间git config --global credential.helper 'cache --timeout=3600' git config --global color.ui truegit config --global alias.co checkoutgit config --global alias.ci commitgit config --global alias.st statusgit config --global alias.br branchgit config --global core.editor "vim" # 设置Editor使用textmate #开启git的diff 3git config --global merge.conflictstyle diff3#设置git lg format loggit config --global alias.lg "log --color --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit"