1. 安装Git
yum -y install git
2. 查看是否安装成功
git --version
如果有输出git版本信息,就说明安装成功了
yum 安装的git默认在/usr/libexec/git-core目录下
3. 配置用户名、邮箱
1. git config --global user.name myusername 2. 3. git config --global user.email myemai
4.设置密码存储
进入项目文件夹
1. echo "[credential]" >> .git/config 2. echo " helper = store" >> .git/config
或者
vim .git/config
在最后加上这两行代码
1. [credential] 2. helper = store
5. 完成
git pull origin master