Reputation: 159
I use Gitkraken. I merge two branches by error and have almost 20000 files in conflict. From that moment, Git kraken is stuck in an infinite loop.
I saw several answer on Gitkraken stuck in loop on Stackoverflow or github, I tried to restart, refresh ... but doesn't work.
Any advice ?
Upvotes: 1
Views: 2227
Reputation: 1050
I've seen this a few times with GitKraken. Sometimes the best way to handle this is to use gitbash (command line).
Close GitKraken
In gitbash use use the following commands
git merge --abort
git reset --hard
git merge <branch-you-want-merged-in-your-current-branch>
Then proceed to handle any merge conflicts
git status
Any files in red have merge conflicts - depending on the number of files, it may be safe to use GitKraken for this - or you may have to use a standard text editor.
If this fails to reset GitKraken properly, you may have to remove the settings folder located here
C:\Users\username\AppData\Roaming\GitKraken
Or resinstall GitKraken
Upvotes: 2