创建好线上版本库以后就可以在本地进行上传
1、选择好文件夹右击Git Bash Here
2、先创建本地版本库 git init
3、git add README.md
4、git commit -m "add README"
5、git push -u origin master
6、git remote add origin 你的版本库链接
7、git add .
8、git commit -m "Initial commit"
9、git push -u origin master
普及一下其他的知识:
切换版本库地址:【git remote set-url origin URL】 更换远程仓库地址,URL为新地址。
先删除远程仓库地址,然后再添加:
【git remote rm origin】 删除现有远程仓库
【git remote add origin url】添加新远程仓库
原文地址:https://www.cnblogs.com/dalaowang/p/11703640.html
时间: 2024-10-07 05:04:55