对于已经修改提交过的注释,如果需要修改,可以借助 git commit --amend 来进行.(注意:修改日志的功能在svn中需要server支持,在git中可以独立修改) 注意:必须是最近提交,还没有push的注释. 例如,在base 里最新的提交就是resolving the crash problem,现在需要将其改为resolving the crash problem to fix bug xxx 在base目录下,输入git commit --amend,就会进入一个文本编辑界面(…