八、如何将本地新创建的项目上传到gitHub上
程序员文章站
2022-04-29 20:32:11
1. cd 项目目录 2.git init //变成git仓库 3.git add . //将项目添加到本地仓库 4.git commit -m '备注' //将项目提交到仓库 5.新建一个远程仓库,通过git remote add origin https://github.com/abc/Pro ......
1. cd 项目目录
2.git init //变成git仓库
3.git add . //将项目添加到本地仓库
4.git commit -m '备注' //将项目提交到仓库
5.新建一个远程仓库,通过git remote add origin https://github.com/abc/projectdemo.git //将本地仓库和远程仓库进行关联(这里是项目地址)
6.git pull --rebase origin master // 将远程仓库和本地仓库内容合并
7.git push -u origin master // 将本地仓库所有内容推送到远程仓库
推荐阅读
-
八、如何将本地新创建的项目上传到gitHub上
-
详解如何将本地项目上传到Github的方法步骤(图文)
-
本地clone GitHub上的项目报错 Recv failure: Connection reset by peer
-
本地clone GitHub上的项目报错 Recv failure: Connection reset by peer
-
八、如何将本地新创建的项目上传到gitHub上
-
将本地的项目提交到github上的流程
-
如何在本地运行查看github上的开源项目
-
如何在本地运行查看github上的开源项目
-
如何将本地代码上传到github上
-
关于如何将本地的仓库代码提交到github上