mirror of
https://github.com/git/git.git
synced 2024-11-24 02:17:02 +08:00
add -p: warn if only binary changes present
Current 'git add -p' will say "No changes." if there are no changes to text files, which can be confusing if there _are_ changes to binary files. Add some code to distinguish the two cases, and give a different message in the latter one. Signed-off-by: Thomas Rast <trast@student.ethz.ch> Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
parent
ddff856351
commit
9fe7a643fc
@ -811,11 +811,16 @@ EOF
|
||||
}
|
||||
|
||||
sub patch_update_cmd {
|
||||
my @mods = grep { !($_->{BINARY}) } list_modified('file-only');
|
||||
my @all_mods = list_modified('file-only');
|
||||
my @mods = grep { !($_->{BINARY}) } @all_mods;
|
||||
my @them;
|
||||
|
||||
if (!@mods) {
|
||||
print STDERR "No changes.\n";
|
||||
if (@all_mods) {
|
||||
print STDERR "Only binary files changed.\n";
|
||||
} else {
|
||||
print STDERR "No changes.\n";
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
if ($patch_mode) {
|
||||
|
Loading…
Reference in New Issue
Block a user