refuser de fusionner des histoires non liées
git pull origin master --allow-unrelated-histories
Plain Parrot
git pull origin master --allow-unrelated-histories
git pull --allow-unrelated-histories origin master
fatal: refusing to merge unrelated histories
solution:
git pull --allow-unrelated-histories
git pull --allow-unrelated-histories origin master
git push -u origin master
git pull origin branchname --allow-unrelated-histories
git pull origin master --allow-unrelated-histories
#IF THAT DOESN'T WORK, REPLACE 'origin master' WITH THE REPO YOU WANT TO PULL FROM