首页 > 系统服务 > 详细

linux环境下配置github 远程仓库

时间:2016-07-21 20:06:49      阅读:165      评论:0      收藏:0      [点我收藏+]

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 远程仓库

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

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!