标签:
有时候玩github难免会踩坑,记录一笔流水账,完整的讲述一个项目在geihub上从无到有的过程->
1.github后台新建项目
2.配置项目
3.上传本地已经存在的项目即需要托管的项目
3.1在终端 cd 到项目所在文件夹内
3.2 $ git init (初始化一个本地的 git仓库)
3.3 $ touch README.md (工程代码的介绍)
3.4 $ git add README.md (添加到仓库中)
3.5 $ git commit -m “first” (提交备注)
3.6 $ git remote add origin https://github.com/qxuewei/XWBorderImage (添加本地仓库origin和指定远程仓库地址 链接为刚才新建远程仓库的链接)
3.7 $ git pull –rebase origin master (pull 远程仓库到本地)
3.8 $ git push origin master (push 本地仓库到远程仓库)
如果出现push到远程仓库确不显示的情况就是本地github账号没有配置成功
需要在终端执行:
git config –global user.name “username”
git config –global user.email “username@mail.com”
配置你自己的github账号,尤其是邮箱,不能出错!
最终你的项目就会成功托管到github上了->
参考链接:
http://stackoverflow.com/questions/24114676/git-error-failed-to-push-some-refs-to
http://www.techug.com/github-3
http://blog.csdn.net/duxinfeng2010/article/details/8654690
标签:
原文地址:http://blog.csdn.net/qxuewei/article/details/52160786