From 2ffe2276df454824d35370331a8f90308ce63e4f Mon Sep 17 00:00:00 2001 From: bl-ue <54780737+bl-ue@users.noreply.github.com> Date: Mon, 24 May 2021 18:45:21 -0400 Subject: [PATCH] git-fame: add page (#6012) --- pages/common/git-fame.md | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 pages/common/git-fame.md diff --git a/pages/common/git-fame.md b/pages/common/git-fame.md new file mode 100644 index 0000000000..0c851fdb37 --- /dev/null +++ b/pages/common/git-fame.md @@ -0,0 +1,36 @@ +# git fame + +> Pretty-print Git repository contributions. +> More information: . + +- Calculate contributions for the current Git repository: + +`git fame` + +- Exclude files/directories that match the specified regular expression: + +`git fame --excl "{{regular_expression}}"` + +- Calculate contributions made after the specified date: + +`git fame --since "{{3 weeks ago|2021-05-13}}"` + +- Display contributions in the specified format: + +`git fame --format {{pipe|yaml|json|csv|tsv}}` + +- Display contributions per file extension: + +`git fame --bytype` + +- Ignore whitespace changes: + +`git fame --ignore-whitespace` + +- Detect inter-file line moves and copies: + +`git fame -C` + +- Detect intra-file line moves and copies: + +`git fame -M`