当前位置:   article > 正文

Gitee新建仓库及上传代码_gitee新建仓库导入代码

gitee新建仓库导入代码

1. 在Gitee新建仓库

图一
图二
图三

2. 在PyCharm中打开自己的项目

图四
依次在图四的窗口中输入如下代码:

#下面这两行是图三中第二个红框的内容
  git config --global user.name "gitee用户名"
  git config --global user.email "gitee注册邮箱"
  git init
  #下面这一行中的链接地址是图三中第一个红框的内容
  git remote add origin https://gitee.com/ALiangXuXu/test-project.git
  git add -A
  #使用git commit -m"2022年4月28日",将文件提交到仓库(输出文件相关信息)
  git commit -m "此处写提交的备注"
  git push -u origin "master"
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10

3. git报错:src refspec master does not match any

出现此问题的原因在于缓存区没有内容,或者说push之前缺少了add ,commit导致没有内容可以push。

声明:本文内容由网友自发贡献,转载请注明出处:【wpsshop博客】
推荐阅读
相关标签
  

闽ICP备14008679号