2022-03-02 00:13:27 +00:00
|
|
|
# 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
|
2022-05-22 09:47:29 +01:00
|
|
|
# $ git bblame $FILE
|
2022-03-02 00:13:27 +00:00
|
|
|
# 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
|
|
|
|
|
|
|
|
|
|
|
|
# nixos/modules/rename: Sort alphabetically
|
|
|
|
1f71224fe86605ef4cd23ed327b3da7882dad382
|
|
|
|
|
2022-07-29 19:38:31 +01:00
|
|
|
# manual: fix typos
|
|
|
|
feddd5e7f8c6f8167b48a077fa2a5394dc008999
|
|
|
|
|
2022-03-02 00:13:27 +00:00
|
|
|
# nixos: fix module paths in rename.nix
|
|
|
|
d08ede042b74b8199dc748323768227b88efcf7c
|
2022-06-05 12:59:58 +01:00
|
|
|
|
|
|
|
# fix indentation in mk-python-derivation.nix
|
|
|
|
d1c1a0c656ccd8bd3b25d3c4287f2d075faf3cf3
|
2022-08-18 01:17:11 +01:00
|
|
|
|
|
|
|
# fix indentation in meteor default.nix
|
2022-08-25 11:13:09 +01:00
|
|
|
a37a6de881ec4c6708e6b88fd16256bbc7f26bbd
|