タグ

ブックマーク / qiita.com/ponko2@github (1)

  • git merge で常に --no-ff - Qiita

    # master 上で git merge するときは常に --no-ff git config branch.master.mergeoptions "--no-ff" # git merge するときは常に --no-ff(1.7.6以降) git config --global merge.ff false ## あわせて設定しておくと吉 # master 上で git pull するときは常に rebase git config branch.master.rebase true # git pull するときは常に rebase(1.7.9以降) git config --global pull.rebase true # git pull するときは常に rebase(1.8.5以降) git config --global pull.rebase preserve

    git merge で常に --no-ff - Qiita
    BoBpp
    BoBpp 2013/06/05
  • 1