You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
552 B

This file contains ambiguous Unicode characters!

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