I have project A which is my main project. From this project was born project B, for "fork". Wonder, so I want to develop things in Project A and I want to replicate them to Project B. When I develop things in project A and commit push and everything beauty, then I go to project B which I cloned and added a new remote to it:
git remote add upstream url_projeto
I do:
git merge upstream/master
Wonder, come changes, BUT some things are not coming. I do not know why, for example a folder with their respective files did not come.
And also against start, I have developed things in Project B that do not exist in his father's "Project A" and when I do a merge in Project B with Project A he goes and deletes some things even though they never existed in project A.Is it clear what the problem is?