美文网首页
VS Code 提交代码到gitee

VS Code 提交代码到gitee

作者: sttone | 来源:发表于2020-05-18 18:12 被阅读0次

第一步

git init 

git add .   //添加所有文件

git add README.md(如果项目中没有这个文件,会在后面几个操作中报错,解决方法是通过命令合并:git pull --rebase origin master)

git commit -m "first commit"

git remote add origin https://gitee.com/YourGiteeName/YourProjName.git
 
git push -u origin master //提交到码云平台

第二步


image.png

点击此处

第三步

再输入一次提交命令
git push -u origin master //提交到码云平台

相关文章

网友评论

      本文标题:VS Code 提交代码到gitee

      本文链接:https://www.haomeiwen.com/subject/kcjpohtx.html