I have used git cvsimport
to import my CVS repository into a brand new GIT one.
Unfortunately, in some cases some commits have been reported in a wrong order.
E.g. I had two CVS revisions of a file, rev1.1 at 11.39am and rev1.2 at 11.42am; in GIT, I can see a commit at 11.42am (with content equal to rev1.2) and a subsequent one at 11.45am (with content equal to rev1.1).
I'm aware of the known issue stated in the cvsimport man page
If timestamps of commits in the cvs repository are not stable enough to be used for ordering commits changes may show up in the wrong order.
but I cannot understand what does stable enough mean.
Moreover, it would be great if anyone could provide me a workaround for this problem.
Thank you very much
cghersi