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

github的本地克隆与上传

时间:2019-10-01 12:08:23      阅读:91      评论:0      收藏:0      [点我收藏+]

标签:自己的   body   tps   hub   title   bash   config   ring   figure   

克隆仓库

1
$ git clone 仓库SSH地址

将线上仓库的文件克隆到一个空文件夹

上传

选取上传的文件

1
$ git add .

“.”代表所有文件,如果只上传一个文件,直接输入文件名就行

链接库,上传至暂存库

1
$ git commit -m "日志"

与仓库建立联系,建立上传日志

设置用户名邮箱

1
2
$ git config --global user.name "Your Name"
$ git config --global user.email "email@example.com"

设置你的github用户名,和收信邮箱

将上传的文件放入仓库

1
2
$ git remote add origin git@github.com:maiime/maii.git
$ git push -u origin master

现在就可以看看自己的线上仓库了

原文:大专栏  github的本地克隆与上传


github的本地克隆与上传

标签:自己的   body   tps   hub   title   bash   config   ring   figure   

原文地址:https://www.cnblogs.com/petewell/p/11614904.html

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