Reputation: 21
How i should use rebase for this case:
I have 3 features in branches:
feature/f1
feature/f2
feature/f3
and I have master branch: master I merge this 3 features into master branch.
My commit history looks like:
Merge f3 into master
Merge f2 into master
Merge f1 into master
During testing, I found that my function f2 is not working correctly.
How could I rebase changes (not interactive mode), to my history looks like:
Merge f3 into master
Merge f1 into master
Thanks.
Upvotes: 2
Views: 4486