写给机房的儿子们看
我这里写了个自动生成代码,填一下表单然后提交就行
在这里输入Github的名称
在这里输入Github的邮箱
在这里输入Github远程仓库ssh地址
下Git
配置用户数据
git config --global user.name "FloranceYeh"
git config --global user.email "Florance_Sunrise@outlook.com"
生成 ssh key
ssh-keygen -t rsa -C "Florance_Sunrise@outlook.com"
Github 链接 ssh key
cat ~/.ssh/id_rsa.pub
https://github.com/settings/keys
to
检查链接
ssh -T git@github.com
- 若22端口失败,配置443端口
vim ~/.ssh/config
- 编写 config 里的内容
Host github.com User Florance_Sunrise@outlook.com Hostname ssh.github.com PreferredAuthentications publickey IdentityFile ~/.ssh/id_rsa Port 443bash
再次检查链接
ssh -T git@github.com
生成Git文件夹
git init
连接仓库
git remote add origin git@github.com:FloranceYeh/blog.git
添加文件
git add .
.是添加所有文件添加注释
git commit -m "push"
上传!!!
git push origin master --force
–force是强制覆盖上传