Compare commits

...

2 Commits

Author SHA1 Message Date
Simon Bruder a14ea8c75d fixup! Add filtering script 2023-05-09 23:19:07 +02:00
Simon Bruder bbcf094f3e Add note on filtering 2023-05-09 23:17:29 +02:00
2 changed files with 14 additions and 0 deletions

View File

@ -8,6 +8,19 @@ Each exercise includes a separate `readme.txt`
that describes things specific to how I implemented the task.
However, those documents are in German, which is a requirement.
**Note**:
Due to copyright restrictions,
I am not allowed to publish many of my solutions.
The repository `ecg-prog-filtered` only includes files solely written by me.
It is filtered with the `./filter.sh` script.
Please **dont** rely on the history of this repository,
as rewriting is part of how it can exist.
See [Licence](#Licence) for more information on the licencing.
If you want access to all of my solutions,
please write me an email (or contact me in another way),
Ill see what I can do.
## Usage
### Build

View File

@ -4,5 +4,6 @@ set -euo pipefail
export FILTER_BRANCH_SQUELCH_WARNING=1
git branch -D filtered
git switch -c filtered
git branch -u filtered/filtered
git filter-branch -f --tree-filter "rm -f $(rg --files-without-match 'SPDX-License-Identifier: (L)?GPL-3.0-or-later' -g '/u??/**/*' | tr '\n' ' ')" HEAD
git switch -