mirror of
https://github.com/status-im/sourcecred.git
synced 2025-01-09 12:15:56 +00:00
e3d2deccb5
Summary: This commit introduces an `ignoreRevsFile` for use with Git blame. See the header of the new file for details. Test Plan: Run `git blame -L183,183 config/test.js`. Before this change, note that it blames to the reformatting commit. After this change, and after configuring `git config blame.ignoreRevsFile .git-blame-ignore-revs`, note that it blames to the last real change. wchargin-branch: prettier-2.0.1-unblame
21 lines
671 B
Plaintext
21 lines
671 B
Plaintext
# List of commits that `git blame` should ignore.
|
|
#
|
|
# Include ONLY commits that are known to be no-ops, like automated
|
|
# reformattings.
|
|
#
|
|
# To properly format an entry, run
|
|
#
|
|
# git show --no-patch --format='%H # %s' COMMIT_HASH
|
|
#
|
|
# replacing `COMMIT_HASH` with the appropriate hash, or pass similar
|
|
# formatting to `git log`, etc.
|
|
#
|
|
# To use this file, ensure that you have Git 2.23 or later installed,
|
|
# then configure your repository to teach it about this file:
|
|
#
|
|
# git config blame.ignoreRevsFile .git-blame-ignore-revs
|
|
#
|
|
# See `git help blame` or `git help config` for details.
|
|
|
|
421aded196eb40c1dd3ec103bedc48d13111fa98 # prettier: reformat code for 2.0.1
|