First post on SO so please forgive me if I miss something.
I'm new to git and am loving it. Things have been mostly going smoothly with the exception of this..
Developers I'm working with pushed a new branch to our github, call it 'devbranch'
I wanted to pull down 'devbranch' to my Eclipse project (which currently only had master). Following some instructions on a blog and on Pro Git, I used Eclipse's "Pull" (assumably executing 'git pull') and then in terminal executed
git checkout -b devbranch origin/devbranch
as per http://progit.org/book/ch3-5.html
Which is (I think) exactly what I did on our server which seemed to work. In Eclipse, this set my working copy to 'devbranch' and all the files were there as they should be.
Oddly though, when doing
git status
or when going to commit the project in Eclipse (which shows which files need to be committed), there are tons of files which seem to be in a modified state? Could anyone help to explain this mishap / what I may have done wrong or how I can fix it? I tried doing another git pull
but it just says that my master and devbranch are all up to date..
Thanks in advance everyone. Your tips are much appreciated.