首页 > 代码库 > 配置Git绑定Git@OSC
配置Git绑定Git@OSC
-
用户名,这个名字会出现在以后的提交记录中。
git config --global user.name "Git@OSC用户名"
-
然后是Email,同样,这个Email也会出现在你的提交记录中,此Email要与Git@OSC的注册Email一致。
git config --global user.email "Git@OSC账号"
-
生成
SSH key
SSH key 可以让你在你的电脑和 Git @ OSC 之间建立安全的加密连接。ssh-keygen -t rsa -C "xxxxx@xxxxx.com"
# Creates a new ssh key using the provided email
# Generating public/private rsa key pair...
-
查看你的public key,并把他添加到 Git @ OSC 【http://git.oschina.net/keys】
cat ~/.ssh/id_rsa.pub
会看到格式如ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC6eNtGpNGwstc….
的输出,复制它们添加到上面的网址。
-
最后输入
ssh -T git@git.oschina.net
,若返回Welcome to Git@OSC, yourname!
则证明添加成功。
参考:https://git.oschina.net/oschina/git-osc/wikis/%E5%B8%AE%E5%8A%A9#ssh-keys
配置Git绑定Git@OSC
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。