1# This file contains a list of commits that are not likely what you
2# are looking for in a blame, such as mass reformatting or renaming.
3# You can set this file as a default ignore file for blame by running
4# the following command.
5#
6# $ git config blame.ignoreRevsFile .git-blame-ignore-revs
7#
8# To temporarily not use this file add
9# --ignore-revs-file=""
10# to your blame command.
11#
12# The ignoreRevsFile can't be set globally due to blame failing if the file isn't present.
13# To not have to set the option in every repository it is needed in,
14# save the following script in your path with the name "git-bblame"
15# now you can run
16# $ git bblame $FILE
17# to use the .git-blame-ignore-revs file if it is present.
18#
19# #!/usr/bin/env bash
20# repo_root=$(git rev-parse --show-toplevel)
21# if [[ -e $repo_root/.git-blame-ignore-revs ]]; then
22# git blame --ignore-revs-file="$repo_root/.git-blame-ignore-revs" $@
23# else
24# git blame $@
25# fi
26
27
28# nixos/modules/rename: Sort alphabetically
291f71224fe86605ef4cd23ed327b3da7882dad382
30
31# manual: fix typos
32feddd5e7f8c6f8167b48a077fa2a5394dc008999
33
34# nixos: fix module paths in rename.nix
35d08ede042b74b8199dc748323768227b88efcf7c
36
37# fix indentation in mk-python-derivation.nix
38d1c1a0c656ccd8bd3b25d3c4287f2d075faf3cf3
39
40# fix indentation in meteor default.nix
41a37a6de881ec4c6708e6b88fd16256bbc7f26bbd