摘要: 将ssh-keys添加到git hub: 1、 git remote add origin https:/xx 2、 $ git push -u origin master 3、git clone git@xxx.git 阅读全文
posted @ 2021-08-18 19:41 Catonce 阅读(146) 评论(0) 推荐(0)
摘要: 1.创建代码仓库 Step 1:先配置下我们的身份吧,这样在提交代码的时候Git就可以知道是谁提交的,命令如下: git config --global user.name "coder-pig" git config --global user.email "779878443@qq.com" 配 阅读全文
posted @ 2021-08-18 19:02 Catonce 阅读(62) 评论(0) 推荐(0)
摘要: 配置全局: 用户名:git config --global user.name ""xx"" 邮箱:git config --global user.email "yy" 验证:git config --global --list ssh key生成: ssh-keygen -t rsa -C "y 阅读全文
posted @ 2021-08-18 16:54 Catonce 阅读(43) 评论(0) 推荐(0)
摘要: 有“ : ”→{ } 有无“ : ”→[ ] 2个-为 [], xx:yy为{} 案例: 阅读全文
posted @ 2021-08-18 15:33 Catonce 阅读(28) 评论(0) 推荐(0)