1.使用命令行将现有项目添加到 GitHub
-
在github上新建一个和本地项目一样名称的仓库
-
打开终端,进入本地项目
初始化:git init
添加文件
git add . git commit -m "First commit"
链接远程仓库,输入用户名密码
git remote add origin https://github.com/willian-li/pathfollowingwithobstacleavoidance.git
上传到master分支
git push origin master
-
设置主分支为master
https://www.cnblogs.com/dongyaotou/p/14130089.html -
删除main分支
https://blog.csdn.net/weixin_30646315/article/details/97449384
2.github本地切换分支
https://www.cnblogs.com/u-1596086/p/11328374.html
-
查看分支
git branch -a
-
切换分支
git checkout master
3.提交文件到仓库
-
添加
git add . git commit -m “first commit”
-
更新本地仓库(远程做了文件修改要执行这步)
git pull origin master
-
再上传
git push -u origin master