I am working on iOS project & using GitHub. Along with me 2 more developers are working on same project but on different functionality. Now I want to integrate code from all developers. We are using GitHub for FIRST TIME.
Lets say , if they are pushed their code on GitHub independently then how can I get their code & integrate with my code ?
Any kind of help is appreciated. Thanks in advance.
If you have granted those developer the status of collaborator on your repo, that means they can push directly to it.
They can push their features in their own branch, in which case you can be the integrator, and after a
git fetch --all, start somegit mergein order to consolidate their work.But if each developers made its own repo based on your (called fork), then they must communicate with your project through pull requests.