首页 > Web开发 > 详细

通过git上传项目到github

时间:2017-02-06 22:16:38      阅读:289      评论:0      收藏:0      [点我收藏+]

进入项目的目录 git init 产生一个.git/的目录

echo "# spider" >> README.md
git init
git add README.md
git commit -m "first commit"
git remote add origin https://github.com/852438143/spider.git
git push -u origin master


…or push an existing repository from the command line

 
git remote add origin https://github.com/852438143/spider.git
git push -u origin master

通过git上传项目到github

原文:http://www.cnblogs.com/ylw666/p/6371880.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!