Is there a command to undo git flow init?

后端 未结 3 1136
有刺的猬
有刺的猬 2021-01-30 06:06

After git flow init, how to remove git flow model?
Even, I removed related config from .git/config file.



        
相关标签:
3条回答
  • 2021-01-30 06:45

    If you removed those sections from your config any reference to git-flow is gone.

    There isn't really a need to remove anything though, the git-flow model is just that, it's a model. You can always use standard git commands.

    What git-flow adds to your config, only git-flow software will use, not the git itself.

    0 讨论(0)
  • 2021-01-30 06:56

    You can do what @Peter said from the command line too!

    Those commands remove all the sections of the git config file related to gitflow.

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

    Then you can re-init gitflow as usual.

    git flow init
    
    0 讨论(0)
  • 2021-01-30 06:57

    DO NOT REMOVE GIT FLOW INIT IF YOU WANT TO CREATE NEW FEATURE BRANCH JUST TYPE

    git flow feature start feature_name

    NO NEED TO DO GIT FLOW INIT EVERYTIME


    0 讨论(0)
提交回复
热议问题