自動コミットなしのGitマージ
を行うことは可能git mergeですが、コミットはありませんか? 「man git merge」はこう言います: With --no-commit perform the merge but pretend the merge failed and do not autocommit, to give the user a chance to inspect and further tweak the merge result before committing. しかし、私git mergeが--no-commitそれを使おうとすると、まだ自動コミットします。これが私がしたことです: $> ~/git/testrepo$ git checkout master Switched to branch 'master' $> ~/git/testrepo$ git branch …