Since the TFS server clock settings may be incorrect, the data can not be updated. Contact your Team Foundation Server administrator.

Cause: This issue is due to modify the system time to install TFS server caused because of TFS Source Control will make a judgment based on check-in time, if renewed after the time change is less than the latest version of the set time, it will report this error

Solution: First, the server system time set to automatically obtain the time (the best restart it), then be resolved by modifying the database TfsVersionControl or Tfs_DefaultCollection in "tbl_Changeset" table, modify abnormal CreationDate time value, less than the current time to normal

例如:update [Tfs_DefaultCollection].[dbo].[tbl_ChangeSet] set CreationDate='2019-06-14 18:19:16.820' where ChangeSetId='159'

Guess you like

Origin www.cnblogs.com/hyf69/p/11039386.html