How to pull the committed version from a personal branch to the main branch or another similar method

0
hello I want to move the work I was working on in my personal branch to the main branch, but I don't know how. How do I do it?
asked
2 answers
1

You would need to open the main branch and merge your branch changes (from the version control menu). For more information you can check out this section of the documentation and this section.

Be aware that if both on your branch and the main line changes have been implemented, you might run into a merge conflict. If this is not just a playground app, I advise you to work together with someone who has done this before.

 

answered
0

Thank you for your kind detailed reply.

answered