Reputation: 43
I just switched from Visual Studio Code to IntelliJ for Java development. Is there any way for IntelliJ to show last commit information on the current selected line? I used this a lot in VSCode since we have multiple teams working on the same project.
Upvotes: 3
Views: 4367
Reputation: 4885
The same like GitLens from Visual Studio Code can the Jetbrains GitToolBox.
You must install the plugin on your IntelliJ. Managing plugins in IntelliJ.
After them, you can toggle it in on Settings -> Other Settings -> GitToolBox Global or GitToolBox Project (if you only want to configure per project)
Upvotes: 8