随着团队开发成员增多,引入了git-flow的使用,初次使用遇到一些问题
一:安利一篇优质的文章:
Git 在团队中的最佳实践--如何正确使用Git Flow
二:简单的使用过程,建立新功能即可开发
2.1 安装git-flow:brew install git-flow
备注:如果没有安装brew,复制下面代码进行安装
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
2.2 安装成功之后,点击sourceTree->仓库-> git-flow或 hg flow->建立新功能,如下图
三:使用过程中踩的坑
踩坑一:
问题描述:Fatal: Not a gitflow-enabled repo yet. Please run 'git flow init' first
解决方式:
错误尝试:首先尝试根据提示,在控制台中,输入“git flow init”,失败
正确解决方式亲测可行:
这个方法是从stack flow上爬到的,起初看到这个解决,无感也没有尝试,后来测试一波是可行的
1、Open the .git\config file
2、Remove all the [gitflow * entries and save the file
3、Close and re-open SourceTree
4、In the main menu, go to Repository > Git Flow > Initialise Repository (should be enabled now)
1、打开本地项目 .git\config 文件
2、查找gitflow,然后删除git flow相关内容后保存
3、关闭.git\config 文件,关闭soureTree
4、重新打开sourceTree,主菜单->仓库-> git-flow或 hg flow->初始化仓库,再重新建立新功能即可行
遇坑再续。。。