首先在码云上先建一个仓库

 

git上传本地文件到gitee上

创建之后会有个远程项目地址 例如:https://gitee.com/xxxx/项目名

在对应的项目中,鼠标右击出现下图,并点击进入git命令号界面

 

git上传本地文件到gitee上

git init 初始化

git add . 将当前目录加入到git 

git commit -m "first commit(提交的描述信息)"

git remote add origin https://gitee.com/xxx/项目名

git push -u origin master 将文件上传到远程版本库的master分支

这个算是自己总结也是笔记

 

 

 

 

 

 

 

 

 

 

 

 

相关文章:

  • 2021-12-26
  • 2021-09-17
  • 2022-02-06
  • 2021-11-04
  • 2021-07-16
  • 2022-01-15
  • 2022-02-03
  • 2022-02-12
猜你喜欢
  • 2021-12-08
  • 2022-12-23
  • 2021-08-14
  • 2021-05-31
  • 2022-01-04
  • 2022-02-09
  • 2021-05-16
相关资源
相似解决方案