Linux命令行下使用GitHub
1.注册github账号
2.创建ssh密钥
cd ~
ssh-keygen -t rsa -C your_email@example.com
cd ~
ssh-keygen -t rsa -C your_email@example.com
会在~/.ssh/下生成id_rsa.pub文件,在github网站上的SSH and GPG keys —>New SSH Keys,标题随便写,可以写计算机的名字,将id_rsa.pub里面的内容粘贴key里,最后点击Add SSH Key。
3.打开终端
ssh -T git@github.com
ssh -T git@github.com
这一步如果提示Permission denied (publickey)
,就执行ssh-keygen -t rsa -b 4096 -C "your_email@example.com"
重新产生key,出现一下提示,说明以正常连接到github
Hi ganchunsheng! You've successfully authenticated, but GitHub does not provide shell access.
4.在github上创建仓库
上传代码按照这个步骤:
git init #初始化
git add . #初始化本地仓库
git commit -m "first commit" #加注释,并提交到本地仓库
git remote add origin https://github.com/xxxx/test.git #连接远程仓库
git push -u origin master #将本地仓库的东西提交到master分支下
5.下载代码
master分支:
git clone https://github.com/xxxx/test.git #xxxx为用户名
包含子分支:
git clone --recursive https://github.com/xxxx/test.git
6.常见问题
(1)提示错误:fatal: remote origin already exists.解决办法:
git remote rm origin
(2)git未初始化
***Please tell me who you are.
Run
git config --global user.email "you@example.com"
git config --global user.name "Your Name"
解决办法:
git config --global user.name "your_email"
config --global user.email your_email@example.com
GitHub 教程系列文章:
通过GitHub创建个人技术博客图文详解 http://www.linuxidc.com/Linux/2015-02/114121.htm
GitHub 使用教程图文详解 http://www.linuxidc.com/Linux/2014-09/106230.htm
使用 GitHub / GitLab 的 Webhooks 进行网站自动化部署 http://www.linuxidc.com/Linux/2016-06/131993.htm
多个GitHub帐号的SSH key切换 http://www.linuxidc.com/Linux/2016-05/131080.htm
如何在同一台电脑上使用两个GitHub账户 http://www.linuxidc.com/Linux/2016-05/131079.htm
利用GitHub搭建个人Maven仓库 http://www.linuxidc.com/Linux/2016-04/130197.htm
一分钟认识GitHub http://www.linuxidc.com/Linux/2015-11/125089.htm
分享实用的GitHub 使用教程 http://www.linuxidc.com/Linux/2014-04/100556.htm
GitHub使用操作指南 http://www.linuxidc.com/Linux/2016-10/135782.htm
GitHub使用方法入门基础 http://www.linuxidc.com/Linux/2017-05/144084.htm
GitHub 的详细介绍:请点这里
GitHub 的下载地址:请点这里
本文永久更新链接地址:http://www.linuxidc.com/Linux/2017-10/147611.htm