https://git-scm.com/book/zh/v2
一、安装完毕,在桌面或者开始菜单中找到"Git Bash"打开
git --version ; 查看安装位置 : where git
配置个人的用户名称和电子邮件地址:
$ git config --global user.name "runoob"
$ git config --global user.email [email protected]
--global user.name "runoob" $ git config --global user.email [email protected]
注意:如果用了 --global 选项,那么更改的配置文件就是位于你用户主目录下的那个,以后你所有的项目都会默认使用这里配置的用户信息。
如果要在某个特定的项目中使用其他名字或者电邮,只要去掉 --global 选项重新配置即可,新的设定保存在当前项目的 .git/config 文件里。
修改账号、邮箱命令:
以下是修改本地一个仓库的用户名和邮箱
//查看本目录下仓库的邮箱 ; 查看本目录下仓库的用户名
git config user.email git config user.name
//修改本目录下仓库的邮箱 ; 修改本目录下仓库的用户名
git config user.email "邮箱" git config user.name "用户名"
---------------------------------------------------------------------------------
开始修改全局仓库的用户名和邮箱
//查看全局仓库下用户名和邮箱
git config --global user.email
git config --global user.name
//修改全局仓库下用户名和邮箱
git config --global user.email “邮箱”
git config --global user.name “用户名”
设置Git默认使用的文本编辑器, 一般可能会是 Vi 或者 Vim。如果你有其他偏好,比如 Emacs 的话,可以重新设置::
$ git config --global core.editor emacs
--global core.editor emacs
还有一个比较常用的是,在解决合并冲突时使用哪种差异分析工具。比如要改用 vimdiff 的话:
$ git config --global merge.tool vimdiff
--global merge.tool vimdiff
Git 可以理解 kdiff3,tkdiff,meld,xxdiff,emerge,vimdiff,gvimdiff,ecmerge,和 opendiff 等合并工具的输出信息。
当然,你也可以指定使用自己开发的工具,具体怎么做可以参阅第七章。
要检查已有的配置信息,可以使用 git config --list 命令:
$ git config --list
http.postbuffer=2M
user.name=runoob
--list http.postbuffer=2M user.name=runoob [email protected]
有时候会看到重复的变量名,那就说明它们来自不同的配置文件(比如 /etc/gitconfig 和 ~/.gitconfig),不过最终 Git 实际采用的是最后一个。
这些配置我们也可以在 ~/.gitconfig 或 /etc/gitconfig 看到,如下所示:
vim ~/.gitconfig
~/.gitconfig
显示内容如下所示:
[http]
postBuffer = 2M
[user]
name = runoob
email = [email protected]
http] postBuffer = 2M [user] name = runoob email = [email protected]