标签: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
标签:remote comm pos clone 如图所示 stat git 上传 span
原文地址:https://www.cnblogs.com/dhs94/p/9063815.html