git push refusing to merge unrelated histories code example

Example 1: fatal: refusing to merge unrelated histories

git pull origin master --allow-unrelated-histories

Example 2: refusing to merge unrelated histories git

I think its get sorted after using below command
>git pull --allow-unrelated-histories

Example 3: refusing to merge 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

Example 4: git refusing to merge unrelated histories on rebase

git merge upstream/master --allow-unrelated-histories