I've recently setup a Gitolite Ubuntu server, along with repositories and users (within groups). Everything is going swimmingly for things actually working.
In my Git research, I've found a specific Git Model that works in the way we want it to. We were in dire need for a way to apply hotfixes to our current source without screwing the current development version. This model from "nvie" attends to all of our needs.
The problem is that it doesn't really explain remote hosting using this model. And we can't figure out a few things.
Currently we're thinking that every time we add a new feature-* branch which is finished, we'll push it to a remote branch under the same name. But this means that one of us will then at a later date have to have to manually pull them and ensure there are no conflicts.
How can we use the "nvie" model but in a team based workflow?
Edit to be more clear:
None of the team understand how, say, two people can be developing their own features. The first person finishes their feature and merges into develop. What does the second person do? Stash their changes and pull down develop into their branch, then apply their stash or what?
We're unsure how we can be pushing into develop at the same time etc, without overwriting each others newer changes.
rebaseon their developing branch. I.e. in branch feature-A, dogit rebase develop. I hope that is right. Test this somewhere safe, please. – Unapiedra Oct 21 '11 at 14:07