@@ -866,33 +866,33 @@ int cmd_blame(int argc, const char **argv, const char *prefix)
866
866
const char * revs_file = NULL ;
867
867
const char * contents_from = NULL ;
868
868
const struct option options [] = {
869
- OPT_BOOL (0 , "incremental" , & incremental , N_ ("Show blame entries as we find them, incrementally" )),
870
- OPT_BOOL ('b' , NULL , & blank_boundary , N_ ("Do not show object names of boundary commits (Default: off)" )),
871
- OPT_BOOL (0 , "root" , & show_root , N_ ("Do not treat root commits as boundaries (Default: off)" )),
872
- OPT_BOOL (0 , "show-stats" , & show_stats , N_ ("Show work cost statistics" )),
873
- OPT_BOOL (0 , "progress" , & show_progress , N_ ("Force progress reporting" )),
874
- OPT_BIT (0 , "score-debug" , & output_option , N_ ("Show output score for blame entries" ), OUTPUT_SHOW_SCORE ),
875
- OPT_BIT ('f' , "show-name" , & output_option , N_ ("Show original filename (Default: auto)" ), OUTPUT_SHOW_NAME ),
876
- OPT_BIT ('n' , "show-number" , & output_option , N_ ("Show original linenumber (Default: off)" ), OUTPUT_SHOW_NUMBER ),
877
- OPT_BIT ('p' , "porcelain" , & output_option , N_ ("Show in a format designed for machine consumption" ), OUTPUT_PORCELAIN ),
878
- OPT_BIT (0 , "line-porcelain" , & output_option , N_ ("Show porcelain format with per-line commit information" ), OUTPUT_PORCELAIN |OUTPUT_LINE_PORCELAIN ),
879
- OPT_BIT ('c' , NULL , & output_option , N_ ("Use the same output mode as git-annotate (Default: off)" ), OUTPUT_ANNOTATE_COMPAT ),
880
- OPT_BIT ('t' , NULL , & output_option , N_ ("Show raw timestamp (Default: off)" ), OUTPUT_RAW_TIMESTAMP ),
881
- OPT_BIT ('l' , NULL , & output_option , N_ ("Show long commit SHA1 (Default: off)" ), OUTPUT_LONG_OBJECT_NAME ),
882
- OPT_BIT ('s' , NULL , & output_option , N_ ("Suppress author name and timestamp (Default: off)" ), OUTPUT_NO_AUTHOR ),
883
- OPT_BIT ('e' , "show-email" , & output_option , N_ ("Show author email instead of name (Default: off)" ), OUTPUT_SHOW_EMAIL ),
884
- OPT_BIT ('w' , NULL , & xdl_opts , N_ ("Ignore whitespace differences" ), XDF_IGNORE_WHITESPACE ),
885
- OPT_STRING_LIST (0 , "ignore-rev" , & ignore_rev_list , N_ ("rev" ), N_ ("Ignore <rev> when blaming" )),
886
- OPT_STRING_LIST (0 , "ignore-revs-file" , & ignore_revs_file_list , N_ ("file" ), N_ ("Ignore revisions from <file>" )),
869
+ OPT_BOOL (0 , "incremental" , & incremental , N_ ("show blame entries as we find them, incrementally" )),
870
+ OPT_BOOL ('b' , NULL , & blank_boundary , N_ ("do not show object names of boundary commits (Default: off)" )),
871
+ OPT_BOOL (0 , "root" , & show_root , N_ ("do not treat root commits as boundaries (Default: off)" )),
872
+ OPT_BOOL (0 , "show-stats" , & show_stats , N_ ("show work cost statistics" )),
873
+ OPT_BOOL (0 , "progress" , & show_progress , N_ ("force progress reporting" )),
874
+ OPT_BIT (0 , "score-debug" , & output_option , N_ ("show output score for blame entries" ), OUTPUT_SHOW_SCORE ),
875
+ OPT_BIT ('f' , "show-name" , & output_option , N_ ("show original filename (Default: auto)" ), OUTPUT_SHOW_NAME ),
876
+ OPT_BIT ('n' , "show-number" , & output_option , N_ ("show original linenumber (Default: off)" ), OUTPUT_SHOW_NUMBER ),
877
+ OPT_BIT ('p' , "porcelain" , & output_option , N_ ("show in a format designed for machine consumption" ), OUTPUT_PORCELAIN ),
878
+ OPT_BIT (0 , "line-porcelain" , & output_option , N_ ("show porcelain format with per-line commit information" ), OUTPUT_PORCELAIN |OUTPUT_LINE_PORCELAIN ),
879
+ OPT_BIT ('c' , NULL , & output_option , N_ ("use the same output mode as git-annotate (Default: off)" ), OUTPUT_ANNOTATE_COMPAT ),
880
+ OPT_BIT ('t' , NULL , & output_option , N_ ("show raw timestamp (Default: off)" ), OUTPUT_RAW_TIMESTAMP ),
881
+ OPT_BIT ('l' , NULL , & output_option , N_ ("show long commit SHA1 (Default: off)" ), OUTPUT_LONG_OBJECT_NAME ),
882
+ OPT_BIT ('s' , NULL , & output_option , N_ ("suppress author name and timestamp (Default: off)" ), OUTPUT_NO_AUTHOR ),
883
+ OPT_BIT ('e' , "show-email" , & output_option , N_ ("show author email instead of name (Default: off)" ), OUTPUT_SHOW_EMAIL ),
884
+ OPT_BIT ('w' , NULL , & xdl_opts , N_ ("ignore whitespace differences" ), XDF_IGNORE_WHITESPACE ),
885
+ OPT_STRING_LIST (0 , "ignore-rev" , & ignore_rev_list , N_ ("rev" ), N_ ("ignore <rev> when blaming" )),
886
+ OPT_STRING_LIST (0 , "ignore-revs-file" , & ignore_revs_file_list , N_ ("file" ), N_ ("ignore revisions from <file>" )),
887
887
OPT_BIT (0 , "color-lines" , & output_option , N_ ("color redundant metadata from previous line differently" ), OUTPUT_COLOR_LINE ),
888
888
OPT_BIT (0 , "color-by-age" , & output_option , N_ ("color lines by age" ), OUTPUT_SHOW_AGE_WITH_COLOR ),
889
- OPT_BIT (0 , "minimal" , & xdl_opts , N_ ("Spend extra cycles to find better match" ), XDF_NEED_MINIMAL ),
890
- OPT_STRING ('S' , NULL , & revs_file , N_ ("file" ), N_ ("Use revisions from <file> instead of calling git-rev-list" )),
891
- OPT_STRING (0 , "contents" , & contents_from , N_ ("file" ), N_ ("Use <file>'s contents as the final image" )),
892
- OPT_CALLBACK_F ('C' , NULL , & opt , N_ ("score" ), N_ ("Find line copies within and across files" ), PARSE_OPT_OPTARG , blame_copy_callback ),
893
- OPT_CALLBACK_F ('M' , NULL , & opt , N_ ("score" ), N_ ("Find line movements within and across files" ), PARSE_OPT_OPTARG , blame_move_callback ),
889
+ OPT_BIT (0 , "minimal" , & xdl_opts , N_ ("spend extra cycles to find better match" ), XDF_NEED_MINIMAL ),
890
+ OPT_STRING ('S' , NULL , & revs_file , N_ ("file" ), N_ ("use revisions from <file> instead of calling git-rev-list" )),
891
+ OPT_STRING (0 , "contents" , & contents_from , N_ ("file" ), N_ ("use <file>'s contents as the final image" )),
892
+ OPT_CALLBACK_F ('C' , NULL , & opt , N_ ("score" ), N_ ("find line copies within and across files" ), PARSE_OPT_OPTARG , blame_copy_callback ),
893
+ OPT_CALLBACK_F ('M' , NULL , & opt , N_ ("score" ), N_ ("find line movements within and across files" ), PARSE_OPT_OPTARG , blame_move_callback ),
894
894
OPT_STRING_LIST ('L' , NULL , & range_list , N_ ("range" ),
895
- N_ ("Process only line range <start>,<end> or function :<funcname>" )),
895
+ N_ ("process only line range <start>,<end> or function :<funcname>" )),
896
896
OPT__ABBREV (& abbrev ),
897
897
OPT_END ()
898
898
};
0 commit comments