Files not updating using ‘git pull’

what worked for me is ,

  1. remove .git folder
  2. copy .git from other repo
  3. now git checkout

Before Removing , You can try

git fetch --all 
git reset --hard origin/master

ALL THE BEST

Leave a Comment