码迷,mamicode.com
首页 > 系统相关 > 详细

linux环境下配置github 远程仓库

时间:2016-07-21 20:09:47      阅读:314      评论:0      收藏:0      [点我收藏+]

标签:git

1.设置git用户和邮箱

git config --global user.name "fujinzhou"

git config --global user.email "1445675350@qq.com"


2.生成SSH密钥

ssh-keygen -t rsa //直接敲3次回车,默认key放在/root/.ssh/下


3.在github上添加ssh密钥

cat /root/.ssh/id_rsa.pub //复制到github上(Settings-->SSH andGPG keys-->New SSH key),title随意

4.测试认证是否成功

[root@localhost data]# ssh -T git@github.com

The authenticity of host ‘github.com (192.30.253.113)‘ can‘t be established.

RSA key fingerprint is 16:27:ac:a5:76:28:2d:36:63:1b:56:4d:eb:df:a6:48.

Are you sure you want to continue connecting (yes/no)? yes

Warning: Permanently added ‘github.com,192.30.253.113‘ (RSA) to the list of known hosts.

Hi fujinzhou! You‘ve successfully authenticated, but GitHub does not provide shell access.



5.克隆代码

git clone ssh://git@github.com/51reboot/actual-10-homework.git

git pull origin master 从git 拉代码


git常用命令


查看工作状态、

git status

提交所有代码

git add . 

本地提交

git commit -m "test"

提交到远程

git push origin master


本文出自 “不抛弃!不放弃” 博客,请务必保留此出处http://thedream.blog.51cto.com/6427769/1828437

linux环境下配置github 远程仓库

标签:git

原文地址:http://thedream.blog.51cto.com/6427769/1828437

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