Git gui not showing anything

Until a few days ago, my Git GUI was working properly. It was showing the modified file names with a blue color on the left and the changes made on the right.

Since today, my Git GUI shows nothing on screen. I am not sure what I did on the previous days.

I have already tried uninstalling and reinstalling it with:

$ sudo apt-get install git-gui
$ sudo apt-get remove git-gui

1 Answer

Did you update Git GUI or did an upgrade with sudo apt-get upgrade? Cleaning and reinstalling git-gui might work. So try running the following commands in a terminal:

$ sudo apt-get remove --purge git-gui
$ sudo apt-get update
$ sudo apt-get install git-gui
0

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy

You Might Also Like