I have two repos: Market and Android. When I merge Android to Market use these steps:
cd market
git remote add android ../android
git fetch android
git merge --allow-unrelated-histories android/master
But I get this error:
ei@localhost:~/market$ git merge --allow-unrelated-histories android/master error: unknown option `allow-unrelated-histories'
My enviroment: Ubuntu LTS 14.04
ei@localhost:~/market$ git --version
git version 1.9.1
Is this option removed from Git merge, or do I need some extra config?
Any help would be appreciated, thanks!
git
that the repository maintainers have updated the repository to, and your version of Ubuntu was released in April 2014. – Pinter