Sunday, November 2, 2014

GIT - Supress the popup on git gui - Compres loose objects

Are you one another annoyed user by seeing the pop-up when you run 'git gui' ?

The root cause is loose objects. Better do gc on your gitrepo.

git gc    # This actually prunes objects older than two weeks


Alternatively, you can suppress the dialog permanently.

git config --global gui.gcwarning false



No comments:

Post a Comment