I am relatively new to git. Our organization uses a Fork & Pull Model for managing changes to the master branch. Each developer forks the master and branches from their fork when adding new features. I keep an eye on commits that other developers are making in their own branches, and would sometimes like to merge these changes into my own branch. What steps do I take to accomplish this?
Share
You first need to add the other developer repository as a remote.
Then you fetch changes from there
And then you merge the branch from the remote repository into yours
Happy merging!