$ git fetch
$ git reset --hard HEAD
Checking out files: 100% (1806/1806), done.
HEAD is now at 2f557c9 Upload changes from public server
$ git pull -s recursive -X theirs
give
Auto-merging web/media/images/page-slider/salafitness1.jpg
Automatic merge failed; fix conflicts and then commit the result.
there are many conflicts - how to force restore repository version?
git rebase master
git reset --hard HEAD
git pull
give : Automatic merge failed; fix conflicts and then commit the result.
git fetch origin
git reset --hard origin/master
git clean -f
work fine