This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
具体教程进入创新源于实践的网站,上方问答区,有个git教程。
我们的版本库目录名字叫voice,需要替换掉里头说的et5n824i
过程会弹窗让你输账号密码,账号密码是你educoder的账号和密码
一些命令的笔记
1.添加版本库:git clone 版本库地址
2.进入voice目录
查看是否克隆成功
git remote -v
3.提交代码:(提交代码前如果成员在版本库上传了动西,则需要先拉取代码才能成功提交)
git add .(这里注意add和.有空格)
git commit -m "first commit"
git push origin master
4.拉取代码
git pull origin master
如果拉取代码拉取失败,则要先输入以下命令
$ git reset --hard FETCH_HEAD