Skip to content

Commit

Permalink
chore: add .git-blame-ignore-revs file
Browse files Browse the repository at this point in the history
  • Loading branch information
tombh committed Jul 30, 2023
1 parent dab37bc commit e2ea955
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .git-blame-ignore-revs
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
# This file contains a list of commits that are not likely what you
# are looking for in a blame, such as mass reformatting or renaming.
# You can set this file as a default ignore file for blame by running
# the following command.
#
# $ git config blame.ignoreRevsFile .git-blame-ignore-revs
#
# To temporarily not use this file add
# --ignore-revs-file=""
# to your blame command.
#
# The ignoreRevsFile can't be set globally due to blame failing if the file isn't present.
# To not have to set the option in every repository it is needed in,
# save the following script in your path with the name "git-bblame"
# now you can run
# $ git bblame $FILE
# to use the .git-blame-ignore-revs file if it is present.
#
# #!/usr/bin/env bash
# repo_root=$(git rev-parse --show-toplevel)
# if [[ -e $repo_root/.git-blame-ignore-revs ]]; then
# git blame --ignore-revs-file="$repo_root/.git-blame-ignore-revs" $@
# else
# git blame $@
# fi


# chore: introduce `black` formatting
65a70e4b9665cd96672e784f83cd7a520da20241

0 comments on commit e2ea955

Please sign in to comment.