git-gui: include the number of untracked files to stage when asking the user
Signed-off-by: Bert Wesarg <bert.wesarg@googlemail.com> Signed-off-by: Pat Thoyts <patthoyts@users.sourceforge.net>maint
parent
bb196e2619
commit
99665fc582
|
@ -377,7 +377,8 @@ proc do_add_all {} {
|
||||||
}
|
}
|
||||||
ask -
|
ask -
|
||||||
default {
|
default {
|
||||||
set reply [ask_popup [mc "Stage also untracked files?"]]
|
set reply [ask_popup [mc "Stage %d untracked files?" \
|
||||||
|
[llength $untracked_paths]]]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if {$reply} {
|
if {$reply} {
|
||||||
|
|
Loading…
Reference in New Issue