git flow init 之后,如何删除 git flow 模型?
甚至,我从 .git/config 文件中删除了相关配置。

$ git flow init

# force reset
$ git flow init -f

已经从 .git/config 文件中删除以下内容。
[gitflow "branch"]
    master = master
    develop = develop
[gitflow "prefix"]
    feature = feature/
    release = release/
    hotfix = hotfix/
    support = support/
    versiontag =

谢谢。

最佳答案

您也可以从命令行执行@Peter 所说的操作!

这些命令会删除与 gitflow 相关的 git 配置文件的所有部分。

git config --remove-section "gitflow.path"
git config --remove-section "gitflow.prefix"
git config --remove-section "gitflow.branch"

然后你可以像往常一样重新初始化 gitflow。
git flow init

关于git-flow - 是否有撤消 git flow init 的命令?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/18480923/

10-13 05:31