【Git】Gitbash使用ssh 上传本地项目到github

SSH Git上传项目到GitHub(图文)_git ssh上传github-CSDN博客
前提 ssh-keygen -t rsa -C “自己的github电子邮箱” 生成密钥,公钥保存到自己的github的ssh里

1.先创建一个仓库,复制ssh地址
【Git】Gitbash使用ssh 上传本地项目到github_第1张图片

git init
git add .
git commit -m "first commit"

2.测试连接github

ssh -T git@github.com

【Git】Gitbash使用ssh 上传本地项目到github_第2张图片

3.git remote add origin + 一开始复制的仓库ssh地址

git remote add origin git@github.com:kk0416/HelloQML.git

4.git push -u origin + 分支名

git push -u origin master

【Git】Gitbash使用ssh 上传本地项目到github_第3张图片
【Git】Gitbash使用ssh 上传本地项目到github_第4张图片
5.上传成功
【Git】Gitbash使用ssh 上传本地项目到github_第5张图片

你可能感兴趣的:(github,git,ssh,github)