Search

git blame

Requirements
To follow this setup, it is required to have following …
No Requirements
Blame [git blame]
Annotates each line in the given file with information from the revision which last modified the line. Optionally, start annotating from the given revision.
Synopsis [git blame --<synopsis>]
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>] [--ignore-rev <rev>] [--ignore-revs-file <file>] [--color-lines] [--color-by-age] [--progress] [--abbrev=<n>] [ --contents <file> ] [<rev> | --reverse <rev>..<rev>] [--] <file>
YAML
복사
Commonly Used Commands
Download plugins
VSCode: gitlens
Default blame
git blame <file name>
Blame from certain lines
git blame -L <Start line> <End line or +# of lines> <file name>

Reference