Home > Blockchain >  Latest intellij community edition git revert disabled
Latest intellij community edition git revert disabled

Time:09-07

Git rollback/revert is disabled in my git repo. I Google and found this:-

enter image description here

enter image description here

As you can see file is modifed but git revert is disable. How can I enable it?

CodePudding user response:

The git repo credential needs to setup in order to let Intellij know the git repo status. I did this

git config --global credential.helper manager-core

After this all is fine. Maybe this only needed in windwos.

  • Related