一、git仓库初始化
git init 把当前所在目录变成git工作目录
git config
‐‐global 使用全局配置文件
‐‐system 使用系统级配置文件
‐‐local 使用版本库级配置文件
#定义git用户
[root@zuolaoshi ~]# git config --global user.name "hello"
#定义git使用的邮箱
[root@zuolaoshi ~]# git config --global user.email "hello@loc...