I'm looking at using Git for local developer VCS support (this is for multi-diciplinary development).
Previous practice was that the top level directory would be renamed (and a zip copy kept) for each trial version. It was reasonably effective for 1-2 person teams. Beyond Compare was used between versions.
However a quick try applying Git to the method shows that it 'thinks' that files are deleted and new one created, rather than simply being on a new path.
Thus we have
\GIT-Dir \.git \Master-with-updating-version-name1 \ProjectName \Source files.etc becomes
\GIT-Dir \.git \Master-with-updating-version-name2 \ProjectName \Source files.etc and then
\GIT-Dir \.git \Master-with-updating-version-name3 \ProjectName \Source files.etc Given that I will need to keep alive the old method during the transition, what are the options?
a/ How to get Git to realise that it is simply a path update?
b/ how to make sure that the lower level files become properly tracked & diff'ed?
I'm on Windows, using GitGui 0.13, and git 1.7.4.msysgit.0, and have GitExtensions 2.21 installed