How to change the current branch for management in Egit?

I want to know how to do this in an Egit eclipse plugin. This question has been asked many times for git, but the answers are related to some form of command language, which I do not have access to or do not know. Using the eclipse interface, how can I make the test branch the main branch without taking on the original defect of the original (i.e. without merging)

enter image description here

+6
source share
1 answer

This should be possible:

OP Deco reports on the corresponding process that it was executing:

  • Created a temp branch next to the master branch
  • Right click and select Team >'switch to' > 'master'
  • Select hard reset and select the test branch.
+5
source

Source: https://habr.com/ru/post/908438/


All Articles