使用GitHub管理Repository
Posted yaoyaoliu
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用GitHub管理Repository相关的知识,希望对你有一定的参考价值。
对已有的Repository进行修改
将已有的项目克隆到本地
git clone https://github.com/username/project-name
或者同步已经下载的项目
git pull origin master
前往项目所在的路径
cd project-name
进行修改后提交
git add .
git commit -m commit comment
git push -u origin master
在本地创建新的Repository
在项目目录下,执行初始化
git init
然后添加文件到git
git add .
git commit -m commit-comment
将本地的仓库关联到github上
git remote add origin [email protected]:https://github.com/username/project-name.git
上传github之前,要先pull一下
git pull origin master
然后再进行上传
git push -u origin master
以上是关于使用GitHub管理Repository的主要内容,如果未能解决你的问题,请参考以下文章
Github - repository & project 区别?
What's the difference between @Component, @Repository & @Service annotations in Spring?(代码片段