On Mon, Nov 02, 2009 at 06:01:06PM +0100, Björn Steinbrink wrote:
That would do, but:
git checkout <commit>
*make changes*
git reset --soft master
git checkout master
git commit
seems unnecessarily complicated, when you could as well do:
git read-tree -u --reset <commit>
*make changes*
git commit
I thought Markus *already* had made changes on that commit, but
maybe I misread what he wrote...
Dmitry