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 configファイルのすべてのセクションを削除します。
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モデルはまさにそれであり、モデルです。常に標準のgitコマンドを使用できます。
Git-flowが設定に追加するものは、git自体ではなく、git-flowソフトウェアのみが使用します。