As you reload your feature/teston master, the branch feature/testwill change. For instance.
master
|
V
A----B-----C
\
D----E
^
|
feature/test
After doing
git checkout feature/test
git rebase master
your repo will look like this
master
|
V
A----B-----C----D'----E'
^
|
feature/test
Note that D'! = D, Because he now has a new parent. However, it contains the same changes.
EDIT:
And how can I accept changes from a function / test back to the wizard?
Since it feature/testis in accordance with master git, it simply redirects the main branch.
git checkout master
git merge feature/test
will result in
master
|
V
A----B-----C----D'----E'
^
|
feature/test
See Git-Branching-Basic-Branching-and-Merging for more information.
source
share