git官方文档:https://git-scm.com/book/zh/v2
1.在 Linux 上安装
[root@localhost /]# yum install git
2.初次运行 Git 前的配置
[root@localhost /]# git config --global user.email 532508307@qq.com
[root@localhost /]# git config --global user.name "Huang Cui Gang"
3.查看刚才设置的配置信息
[root@localhost /]# git config --global -l
user.email=532508307@qq.com
user.name=Huang Cui Gang
ok...
Git安装与配置到此结束!
网友评论