提交代码到本地git仓库
git init
git status
git add .
git status
git commit -m "init my project"
 
 
提交本地git仓库代码到码云:
第一次操作:
首先清空git下的内容:git remote rm origin
git push -u origin master
后来提交代码:
git commit -am "备注信息"
git push origin master
 
 如何把本地git仓库托管到码云上
 

相关文章:

  • 2021-07-20
  • 2021-11-07
  • 2021-05-30
  • 2022-12-23
  • 2021-04-08
猜你喜欢
  • 2021-11-20
  • 2022-12-23
  • 2022-02-14
  • 2022-12-23
  • 2022-01-23
  • 2021-11-02
  • 2021-05-05
相关资源
相似解决方案