文章目录
- 注册
- 配置公钥
- 创建空白的码云仓库
- 把本地项目上传到码云对应的空白仓库中
注册
注册并激活码云账号( 注册页面地址:https://gitee.com/signup )
可以在自己C盘/用户/用户名/.ssh 可以看到 有id_rsa.pub 以前在GitHub注册时搞过,打开id_rsa.pub复制
配置公钥
生成并配置 SSH 公钥
- 将id_rsa.pub的内容复制到 下面页面的公钥中,会自动生成标题,然后点击确定
- 然后点击确定 弹出验证身份,是你注册时的密码
PS D:\笔记之前端\笔记之项目\微信小程序\笔记\code\项目\project_shop\uni-shop-2> ssh -t git@gitee.comThe 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 // 这里输入yesWarning: 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代表成功
创建空白的码云仓库
- 创建空白的码云仓库
- 写项目名字以及选中公开 去创建
把本地项目上传到码云对应的空白仓库中
选中SSH模式 然后在项目根目录执行 2 3 行命令
右击项目根目录 -->在外部资源管理器打开–>shift+右击–>powershell窗口
PS D:\...项目\project_shop\uni-shop-2> git initPS D:\...\项目\project_shop\uni-shop-2> git remote add origin git@gitee.com:xrkhy/uni-shop2.gitgit add .git commit -m "首次提交无畏契约项目"git push -u origin masterPS 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'.