git仓库远程连接GitHub

1 先下载git for windows

然后一直点下一步安装.

2 安装之后,选择git gui.生成ssh 链接 git 公钥.

用命令也可以:

$ ssh-keygen -t rsa -C "[email protected]"

然后输入密码.

建议用第一种方式。第二种网上说是可以,但是我没成功过。

然后输入密码。

3 将公钥添加到开源中国上,或者是github中

在开源中国中新建一个公钥,然后将.ssh文件夹下的id_ras_pub中的内容复制到文本框中,这里的title可以随意.

4 测试链接:

输入命令:$ ssh -T [email protected]

然后输入yes

如果成功可以看到你的用户名和邮箱.

出现错误可以测试:$ ssh -Tv [email protected]

5 设置用户名和邮箱

$ git  config user.name"you name"

$git  config user.email"[email protected]"

6 然后在web开源中国中创建一个project.

7 测试上传文件

创建文件夹,需要和你建立的projexct同名。

mkdir hello

cd hello

git init

touch README

git add README

git commit  -m  ‘frist commit‘

8 提交

git remote add test [email protected]:web用户名/hell.git

git push -u test master

如里有报错误:

To [email protected]:yangzhi/hello.git
 ! [rejected]        master -> master (fetch first)
error: failed to push some refs to ‘[email protected]:yangzhi/hello.git‘
hint: Updates were rejected because the remote contains work that you do
hint: not have locally. This is usually caused by another repository pushin
hint: to the same ref. You may want to first merge the remote changes (e.g.
hint: ‘git pull‘) before pushing again.
hint: See the ‘Note about fast-forwards‘ in ‘git push --help‘ for details.

可以输入:

git push -f

可以ok了.

10 克隆代码

git clone [email protected]:用户名/项目名.git

原文地址:https://www.cnblogs.com/tulintao/p/10884203.html

时间: 2024-10-21 11:11:10

git仓库远程连接GitHub的相关文章

Git使用:Linux(Ubuntu 14.04 x64)下安装GIt并配置连接GitHub

github是一个非常好的网络代码托管仓库,知晓许久,但是一直没有用起来,最近才开始使用git管理自己的文档和代码. Git是非常强大的版本管理工具,今天就告诉大家,如何在Linux下安装GIt,并且做相关配置,与GitHub上的仓库链接.我安装的环境是Ubuntu 14.04,64位的 1. 安装 Linux下安装 使用命令apt-get来安装 sudo apt-get install git 2. 配置 配置用户名密码 git config --global user.name "xxx&q

Git详细教程之创建本地仓库和连接Github仓库

首先要知道不只有代码,任何类型的文件都可以进行版本控制,版本控制很重要的一个特性就是你可以随时修改,比如git会记录你的任何操作,如果你想要回退到任何一个历史操作,你可以通过git轻松达到. 本地仓库的创建通常有两种方式: 第一种是自己手动创建: 在自己电脑硬盘中创建新的文件夹,打开然后用gitbash打开此文件夹,运行**git init**然后查看自己的文件夹会看见.git的隐藏文件夹.这是git配置相关的文件夹,不要随意修改它.之后就可以在自己新建的这个文件夹中添加项目包含的文件了. 第二

本地git仓库提交到github

1.$ cd ~/.ssh 或cd .ssh 如果没有则提示: No such file or directory 如果没有提示:No such file or directory 说明你不是第一次使用git,执行下面的操作,清理原有ssh密钥 $ ls config id_rsa id_rsa.pub known_hosts $ mkdir key_backup $ cp id_rsa* key_backup $ rm id_rsa* 2.使用Git Bash生成新的ssh key. $ cd

Git 常用命令 连接GitHub

1.如果插入出现下面的错误可以尝试 $ git push -u origin master To https://github.com/binglong180/loginNew.git ! [rejected] master -> master (fetch first) error: failed to push some refs to 'https://github.com/binglong180/loginNew.git' hint: Updates were rejected beca

git生成ssh公钥方法--远程连接github仓库

先配置全局的用户名和邮箱 $ git config --global user.name "runoob" $ git config --global user.email [email protected] 生成公钥命令 #1.cd到当前用户加目录下 cd ~ #2.生成公钥文件 ssh-keygen -t rsa -C 'youremal' #3.查看你的公钥 cat .ssh/id_rsa.pub 将公钥添加到git设置中 1. 2. 3. 原文地址:https://www.cn

Git远程连接GitHub

1.创建 ssh key; $ssh-keygen -t rsa -C "[email protected]"  [email protected]为设置的邮箱 不用设置密码 一直回车: id-rsa 是私钥:id-rsa.pub 是公钥: 2. 登录GitHub; 打开Account settings; 然后,点"Add SSH Key",填上任意Title,在Key文本框里粘贴id_rsa.pub文件的内容: 3. 添加远程-本地版本库 关联: $git rem

git学习———建立git仓库上传github和从github上下载工程

使用的环境是centos6.5 非常好的git教程学习资料为:http://www.liaoxuefeng.com/wiki/0013739516305929606dd18361248578c67b8067c8c017b000,讲的真心不错,非常的详细. 也遇到了这样一个问题: 上传代码到github时,使用下面命令, git push -m origin master 但是出现如下错误,即使强制上传仍然报错: fatal: remote error:  [email protected]/my

基于Git项目管理客户端SourceTree的免注册安装及远程连接方法

作为程序员,不可避免的要在github上查询代码,而在企业项目中,为了使得项目好管理需要使用项目管理客户端,所以接下来详细讲解一下基于git的sourceTree在windows系统下的安装及与GitHub上的账号进行远程连接同步更新的过程. 由于sourceTree的安装过程中有内嵌git的安装,所以我们不需要单独到git的官方网站上去下载安装git,直接通过sourceTree的安装来安装git. 一.sourcetree的免注册安装过程  首先,下载windows版本的sourceTree

Git 命令总结 及 GItHub 项目推送

#今天码了一个小时左右总结了一下git的命令还有一些注意点以及如何推送自己的github仓库上. ps: 自己总结的难免出现理解或时语法上的错误[仅供参考] Git命令 #添加到暂存区 #将所有内容加到暂存区 $ git status  #查看工作区 $ git commit -m "注释"  #从暂存区存入版本区,注释内容随意填 $ git commit -a -m "注释" #从工作区存入暂存区再存入版本区 $ git remote add origin [em