From cfc631803b62507b0702e7e02dc572243003e6a4 Mon Sep 17 00:00:00 2001 From: Carl Gay Date: Fri, 2 Feb 2024 21:16:17 +0000 Subject: [PATCH 1/3] Add .git-blame-ignore-revs to ignore large, uninteresting changes Use `git config blame.ignoreRevsFile .git-blame-ignore-revs` in the root of your checkout to update your local Git config to use this file. See also: https://docs.github.com/en/repositories/working-with-files/using-files/viewing-a-file#ignore-commits-in-the-blame-view --- .git-blame-ignore-revs | 3 +++ 1 file changed, 3 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 000000000..b177f9efd --- /dev/null +++ b/.git-blame-ignore-revs @@ -0,0 +1,3 @@ +# Removes trailing whitespace from all .dylan files +bb1206747607167d48e9ad5b10fd379a5eb53373 + From 61f3bf1722813887029a31f30a8afb51f49da578 Mon Sep 17 00:00:00 2001 From: Carl Gay Date: Fri, 2 Feb 2024 21:22:06 +0000 Subject: [PATCH 2/3] hacker guide: add instructions to use .git-blame-ignore-revs file --- documentation/hacker-guide/source/index.rst | 3 +++ 1 file changed, 3 insertions(+) diff --git a/documentation/hacker-guide/source/index.rst b/documentation/hacker-guide/source/index.rst index 0cd4287c9..3eb7a2633 100644 --- a/documentation/hacker-guide/source/index.rst +++ b/documentation/hacker-guide/source/index.rst @@ -42,6 +42,9 @@ don't yet have a GitHub account and ssh keys, now is a good time to get them. To checkout the main "opendylan" repository:: git clone --recursive https://github.com/dylan-lang/opendylan + cd opendylan + git config blame.ignoreRevsFile .git-blame-ignore-revs # (optional) + You'll want to fork this repository so you can push changes to your fork and then submit pull requests. From 2e12bb57c39599ba4e153d3d2276ef062c3b6996 Mon Sep 17 00:00:00 2001 From: Carl Gay Date: Fri, 2 Feb 2024 21:22:47 +0000 Subject: [PATCH 3/3] CONTRIBUTING.rst: fix link to Hacker Guide docs --- CONTRIBUTING.rst | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/CONTRIBUTING.rst b/CONTRIBUTING.rst index 6b6512f8a..b947e09a7 100644 --- a/CONTRIBUTING.rst +++ b/CONTRIBUTING.rst @@ -1,8 +1,7 @@ How to Contribute ================= -If you would like to start contributing to Open Dylan, please see `How -to Contribute to Open Dylan -`_ -or open the file `documentation/hacker-guide/source/contribute.rst` in -this distribution for guidelines and ideas on where to start. Thanks! +If you would like to start contributing to Open Dylan, please see `How to +Contribute to Open Dylan `_ or +open the file `documentation/hacker-guide/source/index.rst` in this +distribution for guidelines and ideas on where to start. Thanks!