long story short, had a tfs server go down. the backups are a day old (not in my control).
we use git tfs and git tf to talk to the server. When I do a git tfs fetch, I get an error that there are missing changesets.
Is there a way to push those missing missing changesets from my local git to the tfs server?
If I understood the issue well, you should edit the git-tf file in the .git folder of the repository. This file contains changset<=>commit map and the number of the latest changeset downloaded from TFS. The file content might look something like the following:
Suppose the changesets 13536 and 13535 are missing on the TFS server. If you remove the lines
and
and modify the hwm value:
you should be able to resolve the issue.