Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

A rebase operation is in process in VS 2017

I cannot commit any code through my Visual Studio 2017, but I can commit using other Git tools. There is any way to reset or solve this issue?

This is what I get:

enter image description here

like image 483
Bug Avatar asked Jan 02 '19 14:01

Bug


1 Answers

There is a rebase operation in progress in your repo. You'll need to either continue it (git rebase --continue) or abort it (git rebase --abort).

like image 90
Chad B Avatar answered Oct 06 '22 22:10

Chad B