reference : http://fle.github.io/an-efficient-git-workflow-for-midlong-term-projects.html Our full-web project has been going on for nearly two years and is running in production for over 18 months. I think it's my first project without any headache…
一个从无到有的项目大体经历-创建项目目录,创建repo,配置过滤集,配置git user,导入已有基础代码入库,将库放到central去,建立分支,修改代码,checkin代码,分支上 测试验证代码,merge稳定代码回主线,打tag,push到中央库分享 mkdir app cd app git init cd .git vi description cd info sudo vi exclude cd ../../ (app目录) git add --all …
对于我来说,最开始使用github主要是为了使用它的pages功能展示demo.其实这些都是用Github for Windows push上去的,图形化界面的客户端使用确实简单,但是逼格不够,好吧其实是各种原因下不了客户端,正好给我一个探索terminal方式的机会. 1.github账号注册 & msysgit的安装 言归正传,简单介绍下怎样利用git bash操作远端的github代码.首先得有git和github的基本概念,git是版本控制工具,而github相当于一个"免费&q…