After git flow init, how to remove the git flow model?
How do I remove all related config from the .git/config file?
$ git flow init
# force reset
$ git flow init -f
How to remove below content from the .git/config file?
[gitflow "branch"]
    master = master
    develop = develop
[gitflow "prefix"]
    feature = feature/
    release = release/
    hotfix = hotfix/
    support = support/
    versiontag = 
 
     
     
    