chore: add .git-blame-ignore-revs file - #195
Merged
Merged
Conversation
This comment was marked as low quality.
This comment was marked as low quality.
There was a problem hiding this comment.
Actionable comments posted: 1
🤖 Prompt for all review comments with AI agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.
Inline comments:
In @.git-blame-ignore-revs:
- Line 10: The git config commands in the .git-blame-ignore-revs file use
non-standard syntax that will fail when executed. On line 10, remove the word
"set" from the git config command and use the standard syntax of "git config
[--local] <key> <value>". On line 12, replace "git config unset" with the
correct flag-based syntax "git config --unset <key>" to properly unset the
configuration value. Ensure both commands follow the standard git config command
format.
🪄 Autofix (Beta)
Fix all unresolved CodeRabbit comments on this PR:
- Push a commit to this branch (recommended)
- Create a new PR with the fixes
| # 3) <full commit SHA> | ||
| # | ||
| # Configure once per clone: | ||
| # git config set blame.ignoreRevsFile .git-blame-ignore-revs |
There was a problem hiding this comment.
Correct the git config command syntax.
Lines 10 and 12 use non-standard git config syntax that will fail:
- Line 10 uses
git config set ...but the standard syntax isgit config [--local] <key> <value>(withoutset) - Line 12 uses
git config unset ...but the standard syntax isgit config --unset <key>(with--unsetflag, not justunset)
Users following these instructions will encounter command errors.
🔧 Proposed fix for git command syntax
# Configure once per clone:
-# git config set blame.ignoreRevsFile .git-blame-ignore-revs
+# git config --local blame.ignoreRevsFile .git-blame-ignore-revs
# Disable local config:
-# git config unset blame.ignoreRevsFile
+# git config --unset blame.ignoreRevsFileAlso applies to: 12-12
🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.
In @.git-blame-ignore-revs at line 10, The git config commands in the
.git-blame-ignore-revs file use non-standard syntax that will fail when
executed. On line 10, remove the word "set" from the git config command and use
the standard syntax of "git config [--local] <key> <value>". On line 12, replace
"git config unset" with the correct flag-based syntax "git config --unset <key>"
to properly unset the configuration value. Ensure both commands follow the
standard git config command format.
Danil42Russia
force-pushed
the
danil42russia/git-blame-ignore-revs
branch
from
June 19, 2026 20:55
6b8f489 to
4525555
Compare
i582
approved these changes
Jun 21, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary by CodeRabbit
git blameto ignore specified mechanical/formatting commits.