When I am trying to pull my git repository with \"git pull\", it keeps telling me that I have local changes although I have not touched any of the mentioned files. Can someone e
It sounds like your local branch does not have all of the changes on origin.
origin
Firstly, stash your changes
git stash
Then, pull in the changes from origin.
git fetch origin && git rebase origin/(branch name)
Next, add the stash back in to your working directory:
git stash pop