GIT上传本地项目到Github

Posted blue-day

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了GIT上传本地项目到Github相关的知识,希望对你有一定的参考价值。

1.进入本地项目地址

$ cd Users/Shinelon/PycharmProjects/BBS/

2.github创建项目连上本地仓库

$ echo "# BBS" >> README.md  #根据github提示
git add README.md
git add . #把本地文件都加上,额外的操作 git commit
-m "first commit" git remote add origin https://github.com/dakewan/BBS.git git push -u origin master

3.把本地项目文件加上后提交输入github账号密码

参考博客:https://www.cnblogs.com/alex3714/articles/5930846.html

 


以上是关于GIT上传本地项目到Github的主要内容,如果未能解决你的问题,请参考以下文章

如何将本地的代码上传到github

如何在github上上传自己的代码

如何将本地代码上传到github

github上传本地代码

git命令行将本地项目上传到仓库

使用Github上传本地代码