--
Cheers,
- Jacob Atzen
> I create 2 features at the same time: feature/A and feature/B
> I finish feature/A, and it is available in 'develop', but I'd like it
> to be available on feature/B.
This is not supported by the git-flow tool, but you can use the regular
Git commands get this working. git-flow does not forbid you to use
regular Git commands :)
EIther merge feature/A into feature/B if feature/A is not yet (fully)
finished. Or finish feature/A, then rebase feature/B against develop, by
using "git flow rebase" inside feature/B.
Cheers,
Vincent