Is it possible to move/rename files in Git and maintain their history?

sgargan picture sgargan · Feb 22, 2010 · Viewed 354.5k times · Source

I would like to rename/move a project subtree in Git moving it from

/project/xyz

to

/components/xyz

If I use a plain git mv project components, then all the commit history for the xyz project gets lost. Is there a way to move this such that the history is maintained?

Answer

Troels Thomsen picture Troels Thomsen · Feb 22, 2010

Git detects renames rather than persisting the operation with the commit, so whether you use git mv or mv doesn't matter.

The log command takes a --follow argument that continues history before a rename operation, i.e., it searches for similar content using the heuristics:

http://git-scm.com/docs/git-log

To lookup the full history, use the following command:

git log --follow ./path/to/file