I have created a local git repository in C:\temp\ConsoleApplication1
. Then I click the Git Flow
button and follow by OK to accept all default settings. Now under the branches, I can see develop and master.
Next I click Git Flow again to start a new feature, then make some changes and finally finish the feature.
Now my branch looks as follows:
[develop] add line 1
[master] initial commit
Question: I would like to merge the develop into the master branch. What is the right method to achieve that?
I have tried to select develop
branch, then click Merge
button. No matter which commit I choose, there is nothing happens. I also tried to select master and see no difference.