Skip to content

Commit a69ffe5

Browse files
committed
Add .git-blame-ignore-revs
This file contains a list of commits with mass changes for exclusion by `git blame`. Passing `--ignore-revs-file .git-blame-ignore-revs` as a flag will tell git to "ignore changes made by the revision when assigning blame, as if the change never happened". For example: git blame --ignore-revs-file .git-blame-ignore-revs ... For extra hot sauce, ignore white space changes too: git blame -w --ignore-revs-file .git-blame-ignore-revs ... You can make this a default for your repo using: git config blame.ignoreRevsFile .git-blame-ignore-revs Also, if you use the GitLens extension for Visual Studio Code, you can add "-w" as a value to "gitlens.advanced.blame.customArguments". Note that `git blame` does not use any file by default, and the filename `.git-blame-ignore-revs` is just a convention.
1 parent c2dc463 commit a69ffe5

File tree

1 file changed

+73
-0
lines changed

1 file changed

+73
-0
lines changed

.git-blame-ignore-revs

Lines changed: 73 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,73 @@
1+
# This file contains a list of commits with
2+
# mass changes for exclusion by `git blame`.
3+
#
4+
# Passing `--ignore-revs-file .git-blame-ignore-revs` as a flag will
5+
# tell git to "ignore changes made by the revision when assigning
6+
# blame, as if the change never happened".
7+
#
8+
# For example:
9+
# git blame --ignore-revs-file .git-blame-ignore-revs ...
10+
#
11+
# For extra hot sauce, ignore white space changes too:
12+
# git blame -w --ignore-revs-file .git-blame-ignore-revs ...
13+
#
14+
# You can make this a default for your repo using:
15+
# git config blame.ignoreRevsFile .git-blame-ignore-revs
16+
#
17+
# Also, if you use the GitLens extension for Visual Studio Code, you
18+
# can add "-w" as a value to "gitlens.advanced.blame.customArguments".
19+
#
20+
# Note that `git blame` does not use any file by default, and
21+
# the filename `.git-blame-ignore-revs` is just a convention.
22+
23+
9f69b979c4ea825731a2c3102c6b707a58b7e356
24+
# Author: ccw808 <[email protected]>
25+
# Date: Wed Apr 28 22:29:05 2010 +0000
26+
#
27+
# Reverted r1551 "Set property 'svn:eol-style native' on all non binary files"
28+
29+
2c1bd0ba585d74486e6724d56a10c0477bf2b559
30+
# Author: Qais Patankar <[email protected]>
31+
# Date: Sun Jul 31 23:35:22 2016 +0100
32+
#
33+
# Remove shared_logic (#55)
34+
35+
da1709db93d060215067cad60533f621012cf2a2
36+
# Author: sbx320 <[email protected]>
37+
# Date: Fri Sep 16 00:14:55 2016 +0200
38+
#
39+
# Cleaned up some parts of client deathmatch
40+
#
41+
# This commit mainly replaces iterator for loops with C++11 range based for loops for improved code readability
42+
43+
c2caf8b8b95eb328a5fb24e29e8dcbfaf0362dfb
44+
# Author: Jusonex <[email protected]>
45+
# Date: Mon Oct 10 21:03:37 2016 +0200
46+
#
47+
# Revert "Cleaned up some parts of client deathmatch"
48+
#
49+
# This reverts commit da1709db93d060215067cad60533f621012cf2a2.
50+
51+
c39e2cbf9ef355e8720d98c7de7cda93fc25d735
52+
# Author: ccw808 <[email protected]>
53+
# Date: Mon Mar 12 17:11:00 2018 +0000
54+
#
55+
# Applied source formatting. See utils\win-apply-clang-format.bat
56+
57+
ed77b94e1ec7715b8a6fcb5430036be3625f9d5a
58+
# Author: ccw808 <[email protected]>
59+
# Date: Wed May 30 21:55:12 2018 +0100
60+
#
61+
# Applied source formatting
62+
63+
b4dc8b6495f652b56ac7d71fdf53099e50a8e74a
64+
# Author: Marek Kulik <[email protected]>
65+
# Date: Sun Sep 30 14:25:20 2018 +0200
66+
#
67+
# Apply automatic code-formatting
68+
69+
e11685cab4beb7958ab202261f9c9d9b4ce71e58
70+
# Author: Marek Kulik <[email protected]>
71+
# Date: Sun Jan 13 21:04:27 2019 +0100
72+
#
73+
# Replace (void) with () (PR #771)

0 commit comments

Comments
 (0)