開発」カテゴリーアーカイブ

git で merge –no-ff をデフォルトにする方法メモ。

gitでマージするときにデフォルトは –no-ff にしたいと思ったのでメモ。

Can I make fast forwarding be off by default in git?

git の config の default を変更する。

現在のレポジトリだけならこちら。
git config branch.master.mergeoptions "--no-ff"

全体の設定を変更するならこちら。

git config --global branch.master.mergeoptions "--no-ff"