码迷,mamicode.com
首页 > Web开发 > 详细

Git的使用--如何将本地项目上传到Github

时间:2018-07-13 19:01:22      阅读:160      评论:0      收藏:0      [点我收藏+]

标签:font   git push   art   解决方法   csdn   git   style   令行   管理   

转自:https://blog.csdn.net/zamamiro/article/details/70172900

 

右击Test文件夹根目录,点击“Git Bash Here”,打开git命令行。

按照github新建仓库上的文档提示,提交项目:

1.在命令行中,输入“git init”,使Test文件夹加入git管理;

2.输入“git add .”(不要漏了“.”),将Test文件夹全部内容添加到git

3.输入“git commit -m "first commit"”(“git commit -m "提交信息"

4.输入“git remote add origin https://github.com/shench5612390/Test.git”(git remote add origin 你自己的https地址),连接你的guthub仓库。

5.输入“git push -u origin master”,上传项目到Github

 

下载github上面的项目:

克隆远程仓库:File -> new -> Project from vision control -> 输入git路径

 

当在idea中导入maven项目时,不能自动识别pom文件,显示为普通橙色xml文件。

解决方法:点击最右侧侧边栏,点击添加(蓝的的小加号),选择你导入项目的pom.xml文件

Git的使用--如何将本地项目上传到Github

标签:font   git push   art   解决方法   csdn   git   style   令行   管理   

原文地址:https://www.cnblogs.com/wanyong-wy/p/9306374.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!