There are 3 of us working on a Django project using git.
I have more experience than the other 2, so all the changes come by me before they get into "master".
We are all running windows, and we aren't where disk based shares will work so we all have separate "origin" repos in our individual accounts on a linux box. These act as a way for us to share our changes with each other and as an "offsite" backup of our repositories.
One of the other 2 people creates a branch, lets call it BugA, and they make fixes. Then they push it from their work machine to a linux machine we all have access to so that I can review the changes and merge them into the "master" on my account (which is considered THE copy of the code that goes to production).
Once they finish BugA, they will begin BugB with a new branch. As I'm reviewing their work, I find some problems (excess code, comments missing, etc....) So I make changes to their code, test it and commit it to master.
Then they send me the fixes for BugB and I get all kinds of conflicts with their changes. Those conflicts are on the lines of the code that I changed in their commit.
When they try to merge with me, they report conflicts on their end too.
While writing this, I think I'm beginning to understand what might be wrong. I'm merging their code into my master, making edits and commiting. I really need to be making the changes into my their branch in my repo, pushing that back for them to merge with, and then merging them into my master.
What I'm not sure of, is what to do about it. Once they merge with their branch from my repo, then they have to merge with my master? 2 merges instead of 1?
Because of the way we have an externally hosted repo on the linux box that means twice the pushes, twice the merges etc....
Is that really how it should be working?