为什么不git add --patch使用git add -N的二进制文件?

时间:2018-04-02 09:14:55

标签: git binaryfiles git-add

git add --patch不适用于添加了git add -N的二进制文件。有谁知道为什么?在以下示例中,您可以看到git add --patch选择了文本文件a,但没有选择二进制文件0

echo a > a
echo '\0' > 0
git add -N 0
git add -N a

git add --patch
diff --git a/a b/a
index e69de29..7898192 100644
--- a/a
+++ b/a
@@ -0,0 +1 @@
+a
Stage this hunk [y,n,q,a,d,/,e,?]? y 

1 个答案:

答案 0 :(得分:3)

该实现明确排除了二进制文件。见第7行:

 1  sub patch_update_cmd {
 2    my @all_mods = list_modified($patch_mode_flavour{FILTER});
 3    error_msg sprintf(__("ignoring unmerged: %s\n"), $_->{VALUE})
 4      for grep { $_->{UNMERGED} } @all_mods;
 5    @all_mods = grep { !$_->{UNMERGED} } @all_mods;
 6
 7    my @mods = grep { !($_->{BINARY}) } @all_mods;
 8    my @them;
 9
10    if (!@mods) {
11      if (@all_mods) {
12        print STDERR __("Only binary files changed.\n");
13      } else {
14        print STDERR __("No changes.\n");
15      }
16      return 0;
17    }
18    if ($patch_mode_only) {
19      @them = @mods;
20    }
21    else {
22      @them = list_and_choose({ PROMPT => __('Patch update'),
23              HEADER => $status_head, },
24            @mods);
25    }
26    for (@them) {
27      return 0 if patch_update_file($_->{VALUE});
28    }
29  }

git-add--interactive.perl#L1310-L1338