0
0
NNeuron123
This command will merge any changes that have been made to the current branch on "origin" into the branch "master" and then update the local repository's copy of the "origin/master" branch. Changes that are not related to the current branch on "origin" will not be merge. This is handy if you want to keep multiple branches in your local repository with different versions of a codebase.
git pull origin master --allow-unrelated-histories