Online Forwarding Using Git Extensions

Was the user able to do interactive redirects using Git Extensions?

The option is available at reboot, but whenever I select the last n commits, select "interactive" in the redirect window, the editor appears with the comment "noop" instead of the commit lines.

Where am I mistaken?

+5
source share
1 answer

By default, Git extensions set up a branch to redirect to the branch you are currently working on. So, if you do not change this, you have nothing to do, and you will receive a "noop" message. You must reinstall something that is not your current HEAD. Either it will be a certain number of revolutions from your head (for example, HEAD ~ 4), or the original version of your branch (for example: origin / master) or a specific named commit.

+5
source

All Articles