转眼间加入github的阵营已经两年多了,看到别人建立的个人博客挺好看的,因此,自己从此喜欢上了github,总结下自己的相关知识.
推荐学习Git的网址:
猴子都能懂的GIT入门 http://backlogtool.com/git-guide/cn/
git工作流程图
git常用命令
1、托管本地代码到github上步骤:
git init //初始化本地版本库 git add . //跟踪所有改动过的文件 git status //查看状态 git commit -m "first commit" //提交所有更新过的文件 git remote add origin https://github.com/XXXX //将本地代码添加到远程代码库 git push -u origin master 推到远程
2、在github上托管静态页面
git branch //查看分支 git branch gh-pages //创建分支 git checkout gh-pages //切换分支 git push -u origin gh-pages // 将创建的分支添加到远程仓库
3、我在github上托管的静态页面
1、基于Angular.js与Vue.js公司自主开发的一套框架,在新框架的基础上,开发出来的一套前端常用组件 https://chenya1123236324.github.io/component-cy/business/index.html#!/admin/button/button.html 2、基于微信朋友圈广告实现类似Slot Machine一样的小游戏 http://display.6edigital.com/oa/project/slotmachine/html/index.html 3、基于turn.js实现的移动版电子书 【F12切换到手机模式】 http://dtz.6edigital.cn/urbanization3.0/index.html 4、基于angularjs+豆瓣api写的一个响应式电影webapp http://display.6edigital.com/oa/project/broadBeanMovie/index.html#/in_theaters/1 5、基于PreloadJS实现图片预加载动画效果 【F12切换到手机模式】
http://display.6edigital.com/oa/project/newmoisture/index.html