gitflow(重新)init

今天我用gitlow init的时候设置错了production 分支,现在想将其设置为master。

查看init下的指令

~/IdeaProjects/myproject(feature/my20190111) » git flow init -h
USAGE: git flow init [flags] args
flags:
  -h  show this help (default: false)
  -f  force setting of gitflow branches, even if already configured (default: false)
  -d  use default branch naming conventions (default: false)

上面可以看到除了-h之外还有两个指令可以使用,-d使用默认设置,-f就是我现在需要用到的用来更改设置错误的设置。

 git flow init -f

执行上面指令后可以重新设置初始化。

你可能感兴趣的:(其它)