I did a migration from a TFVC branch(TFS 2013) to a git repository(TFS 2013) using git-tfs. It was pretty simple, just ran git-tfs on the TFVC branch, it created a local git branch which I pushed to a new git repository. Git-tfs created the complete history of the TFVC branch in the local git repository. It created git notes for linked work items as well and if I do a git log, I can see the linked work items under notes.
These changes were pushed to a new git repository that I created on TFS 2013 only. I then cloned the new repository in a different folder on my computer. Now, when I do a git log, I don't see the notes neither do i see the notes in the git history in the browser. I can, however, see the individual notes by searching for the commit id of the note(I found the commits in the file .git/logs/refs/notes/commits in the source folder). I don't see the folder under the new git repository for some reason. I tried to fetch/pull the notes but it throws errors as in the image below:
I tried a few different commands but nothing seems to work. Any ideas/suggestions?