GIT学习笔记
git 基础与版本控制
git 协作与工作流
git-flow 练习笔记 | Anran758's blog
git flow 相关的命令操作,实现git flow 工作流的操作
$ git flow init Initialized empty Git repository in /Users/savokiss/demos/gitflow/.git/ No branches exist yet. Base branches must be created now. Branch name for production releases: [master] Branch name for "next release" development: [develop] How to name your supporting branch prefixes? Feature branches? [feature/] Bugfix branches? [bugfix/] Release branches? [release/] Hotfix branches? [hotfix/] Support branches? [support/] Version tag prefix? [] v Hooks and filters directory? [/Users/savokiss/demos/gitflow/.git/hooks]
$ git flow feature start auth //重要的创建功能的命令 Switched to a new branch 'feature/auth' Summary of actions: - A new branch 'feature/auth' was created, based on 'develop' - You are now on branch 'feature/auth' Now, start committing on your feature. When done, use: git flow feature finish auth
sourcetree :使用GUI界面初始化git flow 并进行git工作流的操作