How to get back missing `Local Changes` tab inside `Version Control/Git` tab in Android Studio 4.1?

Viewed 27707

I recently installed a new AndroidStudio4.1 IDE but it is missing the Local Changes tab inside the Version Control which is now renamed to Git? tab. I only see the Log tab. Is there any shortcut to get the Local Changes tab back? also I would like to have the Pull Requests and Console tabs in there.

I tried deleting all the AndroidStudio related folders from the library but none of that helped.

~/Library/Application Support/AndroidStudio*
~/Library/Application Support/Google/AndroidStudio*
~/Library/Caches/AndroidStudio*
~/Library/Logs/AndroidStudio*
~/Library/Preferences/AndroidStudio*
2 Answers

Just disable the following option under File | Settings | Version Control | Commit:

enter image description here

The "Local Changes" feature is not removed, it's relocated to the left-side, under project structures, similar to VSCode:

new position of the feature

You can also use CMD+K to open this new tab on macOS. If someone knows the shortcut for Windows or Linux, feel free to add :D

Related