1. Git 初始配置
配置Git用户和邮箱:
$ git config --global user.name "John Doe"
$ git config --global user.email johndoe@example.com
配置Git默认编辑器:
$ git config --global core.editor emacs
配置差异分析工具:
$ git config --global merge.tool vimdiff
查看配置信息:
$ git config --list