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

github的使用

时间:2018-05-20 18:08:57      阅读:181      评论:0      收藏:0      [点我收藏+]

标签:remote   comm   pos   clone   如图所示   stat   git   上传   span   

一、上传本地代码

1.在github上新建一个repository(命名为英文)

2.打开cmd,进入上传代码所在目录

3.输入如下命令

第一步:git init --建仓
第二步:git add  * --添加代码到本地仓库(*是代码添加全部更新的,也可指定某一文件)
第三步:git commit -m "first commit"  --提交到本地缓存(“引号里面是说明提交了什么东西”)

第四步:git remote add origin https://github.com/yoyoketang/yoyoketang.git  --提交到远程github上(后面的地址,就是之前配置的repository地址)

第五步:git push -u origin master  --push到master分支

技术分享图片

4.代码上传成功后如图所示

技术分享图片

 

二、更新github上的文件

1.查看当前的git仓库状态,可以使用git status
>git status

2.更新后使用git add * (*是更新全部)
>git add *
3.接着输入git commit -m "更新说明“,commit只是提交到缓存区域
>git commit -m "更新说明“

4.如果是多人同时开发维护代码,得先git pull ,拉取当前分支最新代码
>git pull
5.最后git push origin master,最后一步才是push到远程的master分支上
(最好不要上传太大文件,要不然太慢了)

如图

技术分享图片

更新成功后如图显示

技术分享图片

三、克隆代码

1.新建文件夹,然后进入该路径

2.输入命令

>git clone https://github.com/yoyoketang/yoyoketang.git

 

github的使用

标签:remote   comm   pos   clone   如图所示   stat   git   上传   span   

原文地址:https://www.cnblogs.com/dhs94/p/9063815.html

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