On 18 December 2013 12:27, Vladimir Prus
It seems that bootstrap.sh is hard to move, it should be at the top level.
Why not: #!/bin/sh exec submodule/booststrap_impl.sh
Another solution is to use Peter Dimov's suggested work flow, since with that master was merging in changes from develop. The latest/unstable branch could be automatically updated with changes from develop.
Yes, Peter's proposal will work just fine, and I think having superproject's develop branch point and submodule master only sounds confusing, but is in fact fairly logical.
We do need to have a better idea of how the branches are to be used, the current situation is unclear. I'm not sure git-flow is actually appropriate for the super project though, as the rolling release model doesn't quite fit. But this is a discussion for another thread.
I don't agree with the reason for removing '-s theirs', but you can still use 'git merge -s ours master' from your release branch.
That would make the release branch be identical to master
No it wouldn't. It's run from the release branch, so the release branch would stay exactly the same, then when merged into master it would not merge anything from master because all of master is already in its history (unless of course something was pushed to master after "merge -s ours" was run).