git mv records move?

旧巷老猫 提交于 2019-12-02 07:20:29

问题


When invoking git mv file1 file2 does it record the move internally (for history tracking in the log) or is it completely the same as invoking mv file1 file2, git rm file1 and git add file2?


回答1:


git mv is exactly the same as the three operations you listed. Although Git does not explicitly record the move in the repository, the move is detected later whenever you ask for history. For example, adding the --follow switch to git log automatically finds files that have been renamed.



来源:https://stackoverflow.com/questions/3888944/git-mv-records-move

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!