Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私のgit(v 1.7.10.2)では、ターミナルで次のことを行う必要があります。
GIT_MERGE_AUTOEDIT=no export GIT_MERGE_AUTOEDIT
そのため、マージするたびに、メッセージを入力する必要はありません。
これをどこに置くべきなので、デフォルトでこの設定が行われ、MAC でターミナルを開くたびに入力する必要がなくなりますか?
あなたはそれを入れることができます:
.bash_profile
ターミナルを開く
nano $HOME/.bash_profile
行を追加します
export GIT_MERGE_AUTOEDIT=no
これを機能させるには、新しいターミナルを開くことを忘れないでください。