​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)的主要内容,如果未能解决你的问题,请参考以下文章

pytorch1.0 搭建LSTM网络

Git及Github环境搭建(Windows系统)

基于github+hexo搭建个人博客(window)

gitlab搭建与基本使用

linux基本介绍与环境搭建

Git学习Git+GitHub+GitEE+IDEA集成+Git服务器搭建