**

如何将已经写好的代码上传至码云上

**
1、打开码云地址登录,点击“新建仓库”
写好的代码上传到码云上
2、打开要上传文档的目录、右键点击 “Git Bash Here”
写好的代码上传到码云上
3、输入命令 git init

4、输入 git remote add origin https://gitee.com/SIE_swl/school_project.git ---------关联你的项目和远端

5、git add -A //添加目录下的所有文件

6、 git commit -m “first commit” //建立项目,提交到本地仓库 -m 后面自己写备注

7、最后 git push -u origin master //提交到远程仓库

相关文章:

  • 2021-11-28
  • 2021-09-23
  • 2021-05-10
  • 2021-07-16
  • 2021-08-19
  • 2021-07-28
  • 2021-09-09
猜你喜欢
  • 2021-06-17
  • 2021-08-08
  • 2021-07-22
  • 2021-07-05
  • 2021-08-09
  • 2022-12-23
相关资源
相似解决方案