Merge git://repo.or.cz/git-gui
* git://repo.or.cz/git-gui: git-gui: tolerate major version changes when comparing the git version git-gui: show staged submodules regardless of ignore config
This commit is contained in:
@ -1558,7 +1558,11 @@ proc rescan_stage2 {fd after} {
|
||||
|
||||
set rescan_active 2
|
||||
ui_status [mc "Scanning for modified files ..."]
|
||||
set fd_di [git_read diff-index --cached -z [PARENT]]
|
||||
if {[git-version >= "1.7.2"]} {
|
||||
set fd_di [git_read diff-index --cached --ignore-submodules=dirty -z [PARENT]]
|
||||
} else {
|
||||
set fd_di [git_read diff-index --cached -z [PARENT]]
|
||||
}
|
||||
set fd_df [git_read diff-files -z]
|
||||
|
||||
fconfigure $fd_di -blocking 0 -translation binary -encoding binary
|
||||
|
Reference in New Issue
Block a user