Xcode loses git history when moving file

I am trying to move a file between two projects in the same git repository. In Xcode, I can move links to a new project, but as soon as I physically move or copy files to the new projects folder, git will lose the entire history of the log / fault.

On the command line, I can do git log --followit and it works, but how to do it in Xcode?

+5
source share
1 answer

I don't think you can set the global option for git log, but you can override it and trick Xcode to run the modified git log with the addition of the following parameter.

Try creating this hack: fooobar.com/questions/24088 / ...

0
source

All Articles