Skip to content
Snippets Groups Projects
Commit f93a2d81 authored by Marc-Olivier Andrez's avatar Marc-Olivier Andrez
Browse files

Merge branch 'add-file-to-ignore-commits-when-executing-git-blame' into 'develop'

Add file `.git-blame-ignore-revs` to ignore commits when running `git blame`

See merge request asapo/asapo!233
parents 73a2474a 3cf60e71
No related branches found
No related tags found
No related merge requests found
# To ignore the commits specified in this file:
# git blame --ignore-revs-file .git-blame-ignore-revs <FILEPATH>
# To always ignore commits specifcied in this file:
# git config --global blame.ignoreRevsFile .git-blame-ignore-revs
# style: ensure that files terminate with empty new line
58c48bd339485010df0662da04eb3fd6c4de85c3
......@@ -31,6 +31,9 @@
*.out
*.app
### VSCode
.vscode/
### CLion+all ###
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and Webstorm
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
......@@ -103,6 +106,9 @@ compile_commands.json
CTestTestfile.cmake
build
### CCache ###
.ccache/
# End of https://www.gitignore.io/api/c++,cmake,clion+all
#Astyle
......@@ -114,6 +120,7 @@ build
.settings
#GO
.go/
broker/pkg
discovery/pkg
common/go/pkg
......@@ -121,9 +128,14 @@ authorizer/pkg
asapo_tools/pkg
# Python
.venv/
venv/
__pycache__/
#
*.rpm
linux_packages/
#version files
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment