-
Notifications
You must be signed in to change notification settings - Fork 0
20210108关于本地git与远程仓库关联的创建与取消(1)
ziyouzy edited this page Jan 11, 2021
·
1 revision
import (
"encoding"
"encoding/json"
)
https://blog.csdn.net/Jinphy/article/details/81206304?utm_medium=distribute.pc_relevant.none-task-blog-BlogCommendFromMachineLearnPai2-1.control&depth_1-utm_source=distribute.pc_relevant.none-task-blog-BlogCommendFromMachineLearnPai2-1.control
1.先复制2个拷贝
2.用原始的本地仓库尝试与远程同步,再用拷贝1尝试与远程同步,查看其效果
建立本地仓库和线上远程仓库进行关联,关联的时候需要有一个安全验证,这个验证的方式有两种,一种是http,另一种是采用SSH公钥的方式,我推荐使用后者,前者每次需要验证账号密码,后者应该是属于本地的公钥文件验证,具体方式是:
1.登录gitee后打开个人设置->安全设置->SSH公钥
2.添加公钥->标题->起名字
3.添加实际公钥
https://gitee.com/help/articles/4181#article-header0
https://bryantchang.github.io/2018/07/21/git-pubkey/
“注意:这里的 [email protected] 只是生成的 sshkey 的名称,并不约束或要求具体命名为某个邮箱。
现网的大部分教程均讲解的使用邮箱生成,其一开始的初衷仅仅是为了便于辨识所以使用了邮箱。”
https://blog.csdn.net/liuhaomatou/article/details/51396557