Git: remove the Git UI Loose Objects dialog popup

January 11th, 2010 by jeremychone

Edit the from git/share/git-gui/lib/database.tcl and change

	if {$objects_current >= $object_limit} {
		set objects_current [expr {$objects_current * 250}]
		set object_limit    [expr {$object_limit    * 250}]
		if {[ask_popup \....

by:

	if {$objects_current >= $object_limit && false} {
		set objects_current [expr {$objects_current * 250}]
		set object_limit    [expr {$object_limit    * 250}]
		if {[ask_popup \....

Source: Stackoverflow: How to skip “Loose Object” popup when running ‘git gui’

Leave a Reply