I'm not quite sure how I've ended up in this state but for some reason git is detecting everything under my c:\Users directory as being untracked files so when I do a git status I get the following:
>git status
On branch master
No commits yet
Untracked files:
  (use "git add <file>..." to include in what will be committed)
    ../../../3D Objects/
    ../../../AppData/
    ../../../Contacts/
    ../../../Desktop/
    ../../../Documents/
    ../../../Downloads/
    ../../../Favorites/
    ../../../Google Drive/
    ../../../Links/
    ../../../Music/
    ..... and many more
Obviously I don't want these to be tracked or committed. How can I remove these from being tracked in git without deleting any files from my file system
