This repository contains generated files and a checksum.
If you find yourself unable to import your repository due to the presence of files edited outside an instance of ServiceNow, merge commits that mix files from different revisions, or other data that does not match the checksum, you may recover using either of the following techniques:
Remove the problem commits:
git log
and take note of the SHA1s of the problem commitsgit revert SHA1
repeatedly, working backward in time, for each commit that introduced changes not generated by a ServiceNow instancegit push
Overwrite the problem code snapshot with a known good one:
git log
can be useful.git reset --hard SHA1
to a commit that was generated by a ServiceNow instancegit reset HEAD{1}
git add -A
git commit
git push