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

​github环境搭建与基本设置(系统centos6.5)

时间:2017-09-12 15:49:24      阅读:119      评论:0      收藏:0      [点我收藏+]

标签:git centos6.5

1.安装git客户端

    #yum install -y git git-gui

2.生成密钥对,并拷贝至github网站

    #ssh-keygen -t rsa -C "you_git_email"

技术分享技术分享


3.将生成的/root/.ssh/id_rsa.pub的内容黏贴至github的settings->SSH and GPG keys -> SSH keys中

技术分享技术分享


4.设置ssh不输入口令

技术分享技术分享


5.测试是否可连接

技术分享技术分享


6.配置全局用户参数

git config --global user.name xxx

git config --global user.email  xxx@xxx.xxx


7.创建本地仓库

mkdir FOLDER

cd FOLDER

git init

echo "#new" > README.md

git add README.md

git commit -m "first commit" 


8.设置远程仓库并上传文件

git remote add origin URL

git push -u origin master


遇到的问题

在最后一步提交时有报错

“... The requested URL returned error: 403 Forbidden while accessing ..."

解决办法:

vi .git/config

修改

[remote "origin"]

        url = https://github.com/yourusername/example.git

[remote "origin"]

        url = https://yourusername:password@github.com/yourusername/example.git

:这里的password是上述操作2中对ssh私钥设置的密码!


保存退出后重新执行git push命令,提交成功!!


注:本文是通过查阅网上的教程(具体哪个实在忘了,网友莫怪)整理而成的,末尾附上了自己安装过程碰到的问题及其解决方法,希望能够给需要的网友一些借鉴。

​github环境搭建与基本设置(系统centos6.5)

标签:git centos6.5

原文地址:http://castiel.blog.51cto.com/9326814/1964457

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