mv a.txt b.txt; git rm a.txt; git add b.txt; commit 为什么还要删除a.txt呢?mv 操作的时候不就已经重命名好了?然后直接add b.txt不行吗?
yinwei