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

SSH Git上传项目到GitHub(图文)_git ssh上传github-CSDN博客

前提 ssh-keygen -t rsa -C "自己的github电子邮箱" 生成密钥,公钥保存到自己的github的ssh里

1.先创建一个仓库,复制ssh地址

powershell 复制代码
git init
git add .
git commit -m "first commit"

2.测试连接github

powershell 复制代码
ssh -T git@github.com

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

powershell 复制代码
git remote add origin git@github.com:kk0416/HelloQML.git

4.git push -u origin + 分支名

powershell 复制代码
git push -u origin master


5.上传成功

相关推荐
Smile丶凉轩12 小时前
微服务即时通讯系统的实现(服务端)----(1)
c++·git·微服务·github
pumpkin8451414 小时前
GitHub 和 GitLab
gitlab·github
会讲英语的码农16 小时前
Git项目管理
gitee·github
油泼辣子多加18 小时前
2024年11月21日Github流行趋势
github
A洛18 小时前
Vercel 设置自动部署 GitHub 项目
github·webhooks·自动部署·vercel
油泼辣子多加19 小时前
2024年11月22日Github流行趋势
github
和你一起去月球1 天前
TypeScript - 函数(下)
javascript·git·typescript
我不是程序猿儿1 天前
【GIT】TortoiseGit的变基(Rebase)操作
git
yyycqupt1 天前
git使用(一)
git