chore: untrack __pycache__ and ignore it - #64
Open
mdheller wants to merge 1 commit into
Open
Conversation
Four .pyc files were tracked in this repo. THREE OF THEM I COMMITTED IN #62, by running `git add -A` in a worktree without checking what it swept up — in a change whose entire purpose was correcting a previous unverified fix. They are build artefacts: they carry no review value, they churn on every Python version, and they had already caused a concrete problem earlier tonight when `git checkout main` in this repo aborted because a tracked .pyc had local modifications. Untracked, and .gitignore now covers __pycache__/, *.py[cod] and *$py.class so it cannot recur. No source change.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Four
.pycfiles were tracked in this repo. Three of them I committed in #62, by runninggit add -Ain a worktree without checking what it swept up — in a change whose whole purpose was correcting a previous unverified fix.They are build artefacts: no review value, churn on every Python version, and they had already caused a real problem earlier tonight when
git checkout mainhere aborted because a tracked.pychad local modifications.Untracked, and
.gitignorenow covers__pycache__/,*.py[cod],*$py.classso it cannot recur.No source change. 10 tests still pass.