码迷,mamicode.com
首页 > 其他好文 > 详细

使用GitHub管理Repository

时间:2018-12-16 17:12:36      阅读:170      评论:0      收藏:0      [点我收藏+]

标签:epo   clone   one   class   同步   hub   如何   https   git push   

对已有的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 git@github.com:https://github.com/username/project-name.git

上传github之前,要先pull一下

git pull origin master

然后再进行上传

git push -u origin master

参考文献
三只要有你: 如何上传本地代码到github

使用GitHub管理Repository

标签:epo   clone   one   class   同步   hub   如何   https   git push   

原文地址:https://www.cnblogs.com/yaoyaoliu/p/10127107.html

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