0x00 注册账户以及创建仓库
要想使用github第一步当然是注册github账号了, github官网地址:https://github.com/。 之后就可以创建仓库了(免费用户只能建公共仓库),
Create a New Repository,填好名称后Create,之后会出现一些仓库的配置信息,这也是一个git的简单教程。
0x01 配置Git
首先在本地创建ssh key;
$ ssh-keygen -t rsa -C "your_email@youremail.com"
后面的your_email@youremail.com改为你在github上注册的邮箱,之后会要求确认路径和输入密码,我们这使用默认的一路回车就行。成功的话会在~/下生成.ssh文件
夹,进去,打开id_rsa.pub,复制里面的key。
回到github上,进入 Account Settings(账户配置),左边选择SSH Keys,Add SSH Key,title随便填,粘贴在你电脑上生成的key。 为了验证是否成功,在git bash下输入:
$ ssh -T git@github.com
如果是第一次的会提示是否continue,输入yes就会看到:You’ve successfully authenticated, but GitHub does not provide shell access 。
这就表示已成功连上github。
0x03 配置本地git提交账户
配置用户名和邮箱:
git config --global user.name "Example Surname"
git config --global user.email "your.email@gmail.com"
# Set default so that all changes are always pushed to the repository
git config --global push.default "matching"
0x04 查看配置是否正确
获取Git配置信息,执行以下命令:
$ git config --list
user.email=motanchenyuan@126.com
user.name=yannian
0x05 上传项目
(1)输入命令:
$ git remote add origin 仓库地址
(1.1)
$ git pull -f --all(如果没有输入这一行导致GitHub伤的版本里面有readme文件和本地版本冲突,
强制覆盖已有分支:git push -u origin master -f)
(2)输入命令:
$ git push -u origin master
(3)输入命令:
$ git pull
(4)输入命令:
$ git push