On 8 Jul 2013 16:44, "leam hall" <[email protected]> wrote: > > Okay, newbie question. Organization "Foo" has developers Sam, Fred, and Guido. The org clones Project X and over time realizes their own branch needs to be separate from the project for a while. Sam, Fred, and Guido each branch their code for the parts of the project they are working on. > > When Foo decides X-Foo is ready to merge with the master, can the three developers merge their changes into Foo's branch, and then merge the corporate branch into the project? Assuming everyone is willing, of course. > > Leam >
Hello, merging is not specific to the "master" branch. Actually, master is no different from any other branch except that it gets created automatically upon git init. So yes, any developer branch can be merged into any other branch (company-wide, or an other dev's branch). Best, Gergely -- You received this message because you are subscribed to the Google Groups "Git for human beings" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/groups/opt_out.
