标签:ppp 用户 conf 工作 global alt data src ima
1. 设置用户名
git config --global user.name ‘itcastphpgit1‘
2. 设置用户名邮箱
git config --global user.email ‘485434609@qq.com‘
脚下留心:该设置在github仓库主页显示谁提交了该文件
1、创建文件夹
1、在文件内初始化git(创建git仓库)
cd test
git init
touch a1.php # 创建a1.php文件到工作目录
git add a1.php # 添加a1.php到暂存区
git commit -m ‘第一次提交文件‘ # 添加a1.php到仓库
标签:ppp 用户 conf 工作 global alt data src ima
原文地址:https://www.cnblogs.com/zhjblogs/p/14967896.html