一、新建仓库
Your Repositories→New
二、配置用户
用bash.exe执行以下命令
git config --global user.name "github用户名"
git config --global user.email "github邮箱"
三、获取SSH密钥
1.获取密钥
ssh-keygen -t rsa -C "github邮箱"
2.找到公钥文件并复制内容
3.设置github密钥
右上角Settings→SSH and GPG keys→New SSH key
4.绑定SSH连接
$ ssh -T git@github.com
四、项目上传到仓库
1.获取仓库https链接
2.仓库初始化
在项目文件路径中执行初始化
git init
3.添加到本地
git add .
4.提交到本地仓库
git commit -m "提交备注"
5.添加远程仓库地址
git remote add origin https://github.com/1760Summer/Games.git
6.申请提交token
右上角Settings→Developer settings→Personal access tokens→Tokens(classis)→Generate new token(classis)
得到提交token
7.提交到远程仓库
git push origin master
username:邮箱地址
password:提交token
8.防止每次提交都要输入token
git config --global credential.helper manager-core
输入后再次提交会出现Authorize Git Credential Manager验证,点击验证后,以后提交不再需要token
配置中可能遇到的问题
1.默认的22端口无法访问
解决方法:
将22端口改为443端口
新建config文件
内容为
Host github.com
Hostname ssh.github.com
Port 443