赞
踩
1.先贴上我参考的那些文章:
浅析Gitee怎么上传20个以上的文件-git-PHP中文网
Gitee如何上传整个项目文件夹_gitee上传文件夹-CSDN博客(这个是最重要的)
git问题error: remote origin already exists._git error: remote origin already exists.-CSDN博客(这个是第二重要的)
解决 “fatal: Could not read from remote repository.“_git_I'm George-华为云开发者联盟 (csdn.net)(这个也很重要)
2.当你实现在gitee上新建了一个仓库:
3.然后你发现,不知道怎么把自己已经做好的工程文件夹上传到gitee的时候,你可以参考这个Gitee如何上传整个项目文件夹_gitee上传文件夹-CSDN博客,事实上就是下载一个gitee软件;
4.然后操作依然是借鉴上面这个链接博主说的,但是!会报错,所以我总结了一下新手第一次的执行路径:
1.首先登录gitee网页,在个人中心设置那里配置个人公钥,公钥设置参考:SSH 公钥设置 | Gitee 产品文档,如果后面出现报错:fatal: Could not read from remote repository,请参考解决 “fatal: Could not read from remote repository.“_git_I'm George-华为云开发者联盟 (csdn.net)
2.选择想要上传的电脑上的工程的文件夹,然后右键,选择git bash,如果看不到这个选项,那么就选“更多选项”,然后就能看到了,如果还看不到,那就是前面gitee的软件没安装。
3.打开git bash之后,右键粘贴如下两行代码,注意,一定要替换“”里面的内容,添加上自己的gitee账户的名字和绑定的邮箱,请注意这里一定要确定自己的账户和邮箱是正确的
- git config --global user.name "your gitee name"
- git config --global user.email "your gitee emaild@xxx.com"
按照如下两张图片确认自己的邮箱和账户名
按照如下方式进行粘贴和复制,gitee貌似不能直接用复制粘贴快捷键
4.设置完公钥,email和账户名,就开始导入工程,严格按照如下的代码顺序进行执行:
主要还是参考这个博主的文章:Gitee如何上传整个项目文件夹_gitee上传文件夹-CSDN博客,请务必注意 git commit -m "注释的内容" 不能省略,远程项目Http地址的取址方式有多种,我贴了其中一种。
- git init
- git add .
- git commit -m "注释的内容"
- git remote add origin 远程项目的Https地址
- git push -u origin master -f
如果你碰到了报错:error: remote origin already exists, 请参考git问题error: remote origin already exists._git error: remote origin already exists.-CSDN博客
执行以下代码:
- git remote rm origin
- git remote add origin 远程项目的Https地址
- git push -u origin master -f
这个报错其实是最容易忽视的一个错误,前面那篇文章的博主就忽略了这个错误,但事实上,当我们明明已经把公钥/账户名/邮箱号 / git init /git add . / commit-m 等操作都确认无误后,在执行 git push依旧会报错,那大概率就是因为这个error: remote origin already exists的错误了。
我碰到的一些相关错误:
error: remote origin already exists.
fatal: Could not read from remote repository.
error: src refspec master does not match any
fatal: unable to auto-detect email address
error: failed to push some refs to 'otigin'
error: failed to push some refs to 'gitee.com:xxx/xxx.git'
Auth error: 404 not found!
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。