Reputation: 1754
I am new in using git, and I have a confusion about how to merge properly branches. I am using Android Studio integrated VCS, and each time I need to create new future I was adding a new branch. Like you can see in this pic:
I have following branches:
Master
download_web_content
maintenance but never merge them.
So my confusion is how to merge last two into the master one and why my project doesn't look like:
I was following official tutorial but did't get it...
p.s. Please don't mention SourceTree tool. I'd like to use Android Studio or Git Bash.
Upvotes: 0
Views: 277
Reputation: 1645
Android Studio helps you to do merges inside the IDE.
Just follow these steps:
Android Studio merges the changes for you and prompts conflicts if there are any.
Here is a small Tutorial that could also help :)
Hope this helps :)
Upvotes: 1