码迷,mamicode.com
首页 > 其他好文 > 详细

Git远程连接GitHub

时间:2017-12-23 12:01:16      阅读:184      评论:0      收藏:0      [点我收藏+]

标签:ssh key   com   image   fail   文本   gen   amp   ble   git   

1.创建 ssh key;

 $ssh-keygen -t rsa -C "youremail@example.com"  youremail@example.com为设置的邮箱

  不用设置密码 一直回车;  id-rsa 是私钥;id-rsa.pub 是公钥;

2. 登录GitHub; 打开Account settings;

  然后,点“Add SSH Key”,填上任意Title,在Key文本框里粘贴id_rsa.pub文件的内容:

3.  添加远程-本地版本库 关联;

  $git remote add origin  git@github.com:zccxy/Repository.git  

  技术分享图片

4.把本地库推送到远程;

  $git push -u origin master   origin默认远程库;

  由于远程库是空的,我们第一次推送master分支时,加上了-u参数,Git不但会把本地的master分支内容推送的远程新的master分支,还会把本地的master分支和远程的    master分支关联起来,在以后的推送或者拉取时就可以简化命令

  以后就可以用$git push origin master 提交远程;

  遇到的问题:

  error: failed to push some refs to ‘git@github.com:zccxy/Repository.git‘

  解决方法:

  $git pull origin master

  在上传之前先pull;  

 

 5.从远程 克隆

  $get clone git@github.com:zccxy/Repository.git

 

Git远程连接GitHub

标签:ssh key   com   image   fail   文本   gen   amp   ble   git   

原文地址:http://www.cnblogs.com/webmans/p/8088107.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!