Git 常用命令总结
Git 常用命令总结
1. Git 初始配置
配置Git用户和邮箱:
1
2
$ git config --global user.name "John Doe"
$ git config --global user.email johndoe@example.com
配置Git默认编辑器:
1
$ git config --global core.editor emacs
配置差异分析工具:
1
$ git config --global merge.tool vimdiff
查看配置信息:
1
$ git config --list
本文由作者按照 CC BY 4.0 进行授权