diff options
author | Edmundo Carmona Antoranz <eantoranz@gmail.com> | 2015-12-12 18:51:03 -0600 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2015-12-16 10:18:34 -0800 |
commit | aba37f495ee39aa9506a375bb4c667731df39899 (patch) | |
tree | 330c1233fd9e8726d80e0becf5e059e1dcfafea2 /Documentation/git-blame.txt | |
parent | 1aaf14975709c069a87c2673551296a6eb3f82c5 (diff) | |
download | git-aba37f495ee39aa9506a375bb4c667731df39899.tar.gz |
blame: add support for --[no-]progress optionea/blame-progress
Teach the command to show progress output when it takes long time to
produce the first line of output; this option cannot be used with
"--incremental" or "--porcelain" options.
git-annotate inherits the option as well.
Helped-by: Eric Sunshine <sunshine@sunshineco.com>
Signed-off-by: Edmundo Carmona Antoranz <eantoranz@gmail.com>
Reviewed-by: Eric Sunshine <sunshine@sunshineco.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'Documentation/git-blame.txt')
-rw-r--r-- | Documentation/git-blame.txt | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Documentation/git-blame.txt b/Documentation/git-blame.txt index e6e947c808..ba5417567c 100644 --- a/Documentation/git-blame.txt +++ b/Documentation/git-blame.txt @@ -10,7 +10,8 @@ SYNOPSIS [verse] 'git blame' [-c] [-b] [-l] [--root] [-t] [-f] [-n] [-s] [-e] [-p] [-w] [--incremental] [-L <range>] [-S <revs-file>] [-M] [-C] [-C] [-C] [--since=<date>] - [--abbrev=<n>] [<rev> | --contents <file> | --reverse <rev>] [--] <file> + [--progress] [--abbrev=<n>] [<rev> | --contents <file> | --reverse <rev>] + [--] <file> DESCRIPTION ----------- |