Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add .git-blame-ignore-revs. (triton-lang#3117)
I've been making some big NFC changes, and these can clog up `git blame`. Add a file that lists "uninteresting" revisions. You can (optionally!) instruct git to ignore the revs in here during blame. I got this list of commits by looking through the list of Triton commits that touch 30+ files. ChatGPT wrote the following bash script for me. git log --pretty=format:"%H" --name-only | \ awk -v N="30" ' /^[0-9a-f]{40}$/ { if (count > N) print hash; hash=$0; count=0; } NF { count++ } END { if (count > N) print hash } ' | xargs git show --stat
- Loading branch information