提交到Gitee仓库

文章目录

注册

注册并激活码云账号( 注册页面地址:https://gitee.com/signup

可以在自己C盘/用户/用户名/.ssh 可以看到 有id_rsa.pub 以前在GitHub注册时搞过,打开id_rsa.pub复制

配置公钥

生成并配置 SSH 公钥

  1. 将id_rsa.pub的内容复制到 下面页面的公钥中,会自动生成标题,然后点击确定
  2. 然后点击确定 弹出验证身份,是你注册时的密码
// 复制代码
   PS D:\笔记之前端\笔记之项目\微信小程序\笔记\code\项目\project_shop\uni-shop-2> ssh -t git@gitee.com
   The authenticity of host 'gitee.com (180.76.198.77)' can't be established.
   ECDSA key fingerprint is SHA256:FQGC9Kn/eye1W8icdBgrQp+KkGYoFgbVr17bmjey0Wc.
   Are you sure you want to continue connecting (yes/no/[fingerprint])? yes  // 这里输入yes
   
   Warning: Permanently added 'gitee.com,180.76.198.77' (ECDSA) to the list of known hosts.
   Hi xrkhy(@xrkhy)! You've successfully authenticated, but GITEE.COM does not provide shell access.
   Connection to gitee.com closed.  // 这里successfully代表成功

创建空白的码云仓库

  1. 创建空白的码云仓库
  2. 写项目名字以及选中公开 去创建

把本地项目上传到码云对应的空白仓库中

选中SSH模式 然后在项目根目录执行 2 3 行命令

右击项目根目录 -->在外部资源管理器打开-->shift+右击-->powershell窗口

bash 复制代码
PS D:\...项目\project_shop\uni-shop-2> git init

PS D:\...\项目\project_shop\uni-shop-2> git remote add origin git@gitee.com:xrkhy/uni-shop2.git

git add .

git commit -m "首次提交无畏契约项目"

git push -u origin master

PS D:\...\项目\project_shop\uni-shop-2> git push -u origin master
Enumerating objects: 490, done.
Counting objects: 100% (490/490), done.
Delta compression using up to 16 threads
Compressing objects: 100% (407/407), done.
Writing objects: 100% (490/490), 336.54 KiB | 1.04 MiB/s, done.
Total 490 (delta 91), reused 0 (delta 0), pack-reused 0
remote: Resolving deltas: 100% (91/91), done.
remote: Powered by GITEE.COM [GNK-6.4]
To gitee.com:xrkhy/uni-shop2.git
 * [new branch]      master -> master
Branch 'master' set up to track remote branch 'master' from 'origin'.
相关推荐
Hungry_Shark1 天前
IDEA版本控制管理之使用Gitee
java·gitee·intellij-idea
咖啡の猫1 天前
Android开发-选择按钮
android·gitee
咖啡の猫2 天前
Android开发-文本输入
android·gitee
小白嘎嘎3 天前
提速下载方法(gitee和迅雷)
gitee
a3158238064 天前
android13修改WiFi扫描二维码识别识别成功率不高的问题
gitee
前端小超超5 天前
如何配置capacitor 打包的安卓app固定竖屏展示?
android·前端·gitee
雁于飞6 天前
vscode中使用git、githup的基操
笔记·git·vscode·学习·elasticsearch·gitee·github
至善迎风8 天前
版本管理系统与平台(权威资料核对、深入解析、行业选型与国产平台补充)
git·gitee·gitlab·github·svm
咖啡の猫8 天前
Android开发-常用布局
android·gitee
NewChapter °10 天前
如何通过 Gitee API 上传文件到指定仓库
前端·vue.js·gitee·uni-app