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
不要忘记打开一个新终端以使其正常工作。