We use Github for source control in our organization. Multiple developers continuously merge their changes to remote source repository. In my case I cloned the repository when two weeks back and there were multiple merges after that. Now I am trying to get the latest revision of the code using.
git pull origin master
I for sure know that there were multiple merges that have gone in since last time I cloned but pull command tells me that its already up to date. Am I missing anything here?
git fetch
showing anything? – Filibeggit reset --hard origin master
givesfatal: Cannot do hard reset with paths.
. – Insistence