I recently installed Git onto my Windows 7 laptop without really knowing what I was doing. The problem I have now is that all the files on my PC have the question mark icon on them as if they needed to committed to a repository.
How can I undo what ever it is that I have done, so that teh files no longer have the question mark icon over them?
I don’t use the shell extension, so I could be wrong about this, but I guess the question mark means that the file is untracked. As such it is not part of the repository and Git generally knows nothing about them.
So, you did not do anything, and that is exactly why they have the question mark: They are there, but not part of the repository. You can add them and commit the files and the question mark is probably gone (replaced with a checkmark or something) but of course that depends on what you actually want to do with them.