If I understand your problem correctly, you cannot click on the remote repository because your local history does not correspond to the deleted history. This is what usually happens when you locally change the hit commit with rebaseor filter branch.
, . , , git pull, . - , , , , filter-branch.
, , --force git push. git push --force origin master. , , , , git.
, , , , - , .
:
, . fetch/reset, rebase.
fetch/reset . :
git fetch origin && git checkout master
git reset --hard origin/master
rebase . . , , .
git fetch git rebase -i origin/master
, , , . , , .
SO-, : git pull