Answer the question
In order to leave comments, you need to log in
Is it possible to make a git branch dependent on another?
For example, there is a master branch and a feature branch coming from master, which currently differs from master by one commit.
If I make a commit to master, then the feature will not change. But is it possible to make changes made to master be automatically made to feature as well ? Or at least manually how to do it?
Answer the question
In order to leave comments, you need to log in
manually
git checkout feature
git rebase master
git checkout feature
git merge master
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question