From a69ffe55e9bb9ecef74172bd57822d5a749a8878 Mon Sep 17 00:00:00 2001 From: Qais Patankar Date: Wed, 25 Mar 2020 03:56:35 +0000 Subject: [PATCH] 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. --- .git-blame-ignore-revs | 73 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 73 insertions(+) create mode 100644 .git-blame-ignore-revs diff --git a/.git-blame-ignore-revs b/.git-blame-ignore-revs new file mode 100644 index 00000000000..a9f67a9a052 --- /dev/null +++ b/.git-blame-ignore-revs @@ -0,0 +1,73 @@ +# 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. + +9f69b979c4ea825731a2c3102c6b707a58b7e356 +# Author: ccw808 +# Date: Wed Apr 28 22:29:05 2010 +0000 +# +# Reverted r1551 "Set property 'svn:eol-style native' on all non binary files" + +2c1bd0ba585d74486e6724d56a10c0477bf2b559 +# Author: Qais Patankar +# Date: Sun Jul 31 23:35:22 2016 +0100 +# +# Remove shared_logic (#55) + +da1709db93d060215067cad60533f621012cf2a2 +# Author: sbx320 +# Date: Fri Sep 16 00:14:55 2016 +0200 +# +# Cleaned up some parts of client deathmatch +# +# This commit mainly replaces iterator for loops with C++11 range based for loops for improved code readability + +c2caf8b8b95eb328a5fb24e29e8dcbfaf0362dfb +# Author: Jusonex +# Date: Mon Oct 10 21:03:37 2016 +0200 +# +# Revert "Cleaned up some parts of client deathmatch" +# +# This reverts commit da1709db93d060215067cad60533f621012cf2a2. + +c39e2cbf9ef355e8720d98c7de7cda93fc25d735 +# Author: ccw808 +# Date: Mon Mar 12 17:11:00 2018 +0000 +# +# Applied source formatting. See utils\win-apply-clang-format.bat + +ed77b94e1ec7715b8a6fcb5430036be3625f9d5a +# Author: ccw808 +# Date: Wed May 30 21:55:12 2018 +0100 +# +# Applied source formatting + +b4dc8b6495f652b56ac7d71fdf53099e50a8e74a +# Author: Marek Kulik +# Date: Sun Sep 30 14:25:20 2018 +0200 +# +# Apply automatic code-formatting + +e11685cab4beb7958ab202261f9c9d9b4ce71e58 +# Author: Marek Kulik <38703318+botder@users.noreply.github.com> +# Date: Sun Jan 13 21:04:27 2019 +0100 +# +# Replace (void) with () (PR #771)