What is the format of a patch file?

前端 未结 4 901
南旧
南旧 2020-12-08 06:11

What does the following mean ?

diff -rBNu src.orig/java/org/apache/nutch/analysis/NutchAnalysisConstants.java src/java/org/apache/nutch/analysis/NutchAnalysi         


        
4条回答
  •  南方客
    南方客 (楼主)
    2020-12-08 06:38

    The + characters mean that those lines were added since the last version of NutchAnalysisConstants.java. The @@ line is telling you that the diff has jumped to another section of the file, in this case line 39 in the original, or line 43 in the new.

提交回复
热议问题