I did create a remote repo ('myRepo') on Git. I checked the checkbox 'add a READ.me', which also make a commit on this 'myRepo' repo.
Then I create a new folder, where I added somes files and did :
git init
git add .
git commit -m "init"
git remote add origin https://github.com/jozinho947/myRepo.git
# get the READ.me fetched on the 'origin/master' branch locally
git fetch
# get the READ.me merged in my local 'master' where i'm pointing
git merge origin/master
And then I have this error :
fatal: refusing to merge unrelated histories
I don't understand why I can't do this... Can somebody help me ?