这是什么意思,哪位大佬帮个忙?因为之前没学过git,安装完就按照老师的敲了

发布于 7 年前作者 pingzhu12472 次浏览最后编辑 7 年前来自 issues

2 回复
panwei
panwei1 楼5 年前

先运行这两句:

git config --global user.email “你的邮箱地址”

git config --global user.name “你的昵称”

yang80
yang802 楼5 年前

git add . ---- 把你修改的地方提交到暂放区

git commit -m “这里写你修改了那些内容可以让其他人看到” ----- 将暂存区里的改动给提交到本地的版本库。