Reputation: 12194
When I run Reconcile offline work against certain directory subtree, two old untouched SQL files pop up as modified and I am offered to insert them into a changelist. But they are actually unchanged (I verified their binary images) and their File Type is correct (it is Unicode, file content is valid and they have BOM at the beginning).
I tried this remedy which appeared logical to me:
#0
)
How can I teach the Perforce there is nothing wrong with these files?
(Can this be problem with the P4 database? Or with connection encoding? It is set to UTF-8 (Unicode)
for all connections in P4V preferences.)
Upvotes: 0
Views: 667
Reputation: 71454
My guess based on available information is that the server-side checksum does not match the file content (possibly because the file content on the server itself has been modified in some way since the checksum was computed -- this shouldn't happen). Your admin can test this with the "p4 verify" command, and if desired update the checksum to match the new content with "p4 verify -v".
Upvotes: 0