Я добавил удаленный репозиторий в папку, с которой я работаю:
git remote add origin https://github.com/<username>/<repo>.git
Если я наберу:
git pull origin master
Я получаю:
From https://github.com/<username>/<repo> * branch master -> FETCH_HEAD fatal: refusing to merge unrelated histories
Я также пробовал:
$ git pull origin master --allow-unrelated-histories
Но я получаю:
From https://github.com/... * branch master -> FETCH_HEAD error: Your local changes to the following files would be overwritten by merge: <files> Please commit your changes or stash them before you merge. Aborting
Сначала вам нужно либо reset, либо commit внести изменения:
reset
commit
git reset --hard
или
git commit -m "saving changes..."
Тогда вы можете сделать:
git pull origin master --allow-unrelated-histories