github环境搭建与基本设置(系统centos6.5)
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了github环境搭建与基本设置(系统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 [email protected]
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:[email protected]github.com/yourusername/example.git
注:这里的password是上述操作2中对ssh私钥设置的密码!
保存退出后重新执行git push命令,提交成功!!
注:本文是通过查阅网上的教程(具体哪个实在忘了,网友莫怪)整理而成的,末尾附上了自己安装过程碰到的问题及其解决方法,希望能够给需要的网友一些借鉴。
以上是关于github环境搭建与基本设置(系统centos6.5)的主要内容,如果未能解决你的问题,请参考以下文章