'Git rebase origin/develop for feature-2, which is branched off of feature-1, and feature-1 was originally branched from develop
I have the following branch structure.
o---o (develop)
\
o---o---o---o (feature-1)
\
o---o (feature-2)
I'd like both feature-1 & feature-2,
to be up to date with develop using rebase, not merge.
Typically when working on 1 branch,
I'll just do the following:
git fetch
git rebase origin/develop
git push --force-with-lease
How do I do this same kind of rebasing,
so that both feature-1 and feature-2 are fully up-to-date with develop?
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|
