I am working on a git project with other people. One of them updated some files yesterday. Today I did git pull
and it updated my files, like it should. Doesn't get more straightforward than that
However, it also marked all the changes that I fetched from the repo as local changes awaiting a commit. I tried reverting back and merging, I tried it again with pull. Nothing. The new files are still "uncommitted" (even though, again, they came from the server).
I'm awfully confused. What is going on here? Is git intentionally messing with me?
update
here's the output of git status
On branch master
Your branch and 'origin/master' have diverged,
and have 1 and 5 different commits each, respectively.
(use "git pull" to merge the remote branch into yours)
All conflicts fixed but you are still merging.
(use "git commit" to conclude merge)
Changes to be committed:
(... list of files modified\deleted\added etc.)
Untracked files:
(use "git add <file>..." to include in what will be committed)
(... list of untracked files)