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

Git-往返github和本地

时间:2017-11-17 16:11:26      阅读:110      评论:0      收藏:0      [点我收藏+]

标签:http   新建文件夹   新建   load   div   xxx   ast   class   master   

将GitHub仓库Test弄到本地

  • 本地新建文件夹Test
  • 右击运行gitbash
  • 在gitbash中输入git init
  • 在github 仓库选择clone or download
  • 复制链接https://github.com/xxx/xxx.git
  • 在gitbash中输入git clone https://github.com/xxx/xxx.git

将本地文件夹上传到GitHub

  • github中新建仓库NewRepo
  • 在本地文件夹Test中右击选择gitbash,输入git init
  • git status(可有可无)
  • git add .
    git status(可有可无)
  • git commit -m ‘description of this commit‘
  • git status(可有可无)
  • 从github仓库NewRepo点击clone or download,复制链接
  • git remote add origin https://github.com/xxx/xxx.git
  • git push -u origin master

Git-往返github和本地

标签:http   新建文件夹   新建   load   div   xxx   ast   class   master   

原文地址:http://www.cnblogs.com/coding-swallow/p/7851767.html

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