##// END OF EJS Templates
Adds support for blame ignore....
Terry Davis -
Show More
@@ -0,0 +1,8 b''
1 # When making commits that are strictly formatting/style changes, add the
2 # commit hash here, so git blame can ignore the change.
3 # See docs for more details:
4 # https://git-scm.com/docs/git-config#Documentation/git-config.txt-blameignoreRevsFile
5
6 # Example entries:
7 # <full commit hash> # initial black-format
8 # <full commit hash> # rename something internal
@@ -0,0 +1,10 b''
1 rem Other config options for blame are markUnblamables and markIgnoredLines.
2 rem See docs for more details:
3 rem https://git-scm.com/docs/git-config#Documentation/git-config.txt-blameignoreRevsFile
4
5 rem Uncomment below and rerun script to enable an option.
6 rem git config blame.markIgnoredLines
7 rem git config blame.markUnblamables
8
9 git config blame.ignoreRevsFile .git-blame-ignore-revs
10 git config --get blame.ignoreRevsFile
@@ -0,0 +1,10 b''
1 # Other config options for blame are markUnblamables and markIgnoredLines.
2 # See docs for more details:
3 # https://git-scm.com/docs/git-config#Documentation/git-config.txt-blameignoreRevsFile
4
5 # Uncomment below and rerun script to enable an option.
6 # git config blame.markIgnoredLines
7 # git config blame.markUnblamables
8
9 git config blame.ignoreRevsFile .git-blame-ignore-revs
10 git config --get blame.ignoreRevsFile
General Comments 0
You need to be logged in to leave comments. Login now