chore: repo cleanup — untrack .qoder/, prune dead .gitignore entries, fix build_mingw.sh typo - #144
Closed
chiliec wants to merge 1 commit into
Closed
chore: repo cleanup — untrack .qoder/, prune dead .gitignore entries, fix build_mingw.sh typo#144chiliec wants to merge 1 commit into
chiliec wants to merge 1 commit into
Conversation
…w.sh typo
- Remove .qoder/ (Qoder AI tool scratch: agents, plans, repowiki, research)
from version control and ignore the whole dir. 168 tracked files, ~6.6MB
of non-source content. Replaces the narrower .qoder/logs/* rule.
- Prune .gitignore rules for build targets that no longer exist:
js_operation_serializer, vizd/test, delayed_node, size_checker,
inflation_model, and tests/{app,chain_bench,chain,plugin,intense,performance}_test.
Kept live-target rules (cli_wallet, vizd, cat-parts, get_dev_key).
- Rename build_mingv.sh -> build_mingw.sh. documentation/building.md already
instructs users to copy and run 'build_mingw.sh', which did not exist due to
the typo.
On1x
added a commit
that referenced
this pull request
Aug 11, 2026
…_mingw.sh typo # Conflicts: # .qoder/docs/onix-protocol-paper-ru.md # .qoder/docs/onix-protocol-paper-ru.pdf # .qoder/docs/onix-protocol-paper.md # .qoder/docs/onix-protocol-paper.pdf
Member
|
Folded into the |
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.
Safe, zero-build-impact cleanups from a repo review. No source code touched; no branches removed.
1. Untrack
.qoder/(168 files, ~6.6 MB).qoder/is the Qoder AI-tool working directory (agents/,plans/,repowiki/,research/) — agent scratch space, not project source. It was the largest non-source directory in the tree after localization. Removed from version control and ignored wholesale, replacing the narrower.qoder/logs/*rule.2. Prune dead
.gitignoreentriesRemoved ignore rules for build targets that no longer exist anywhere in the tree (verified: 0 references in any non-thirdparty
CMakeLists.txt):programs/js_operation_serializerprograms/vizd/testprograms/delayed_nodeprograms/size_checkerprograms/util/inflation_modeltests/{app_test,chain_bench,chain_test,plugin_test,intense_test,performance_test}Kept the rules for targets that are still built:
cli_wallet,vizd,cat-parts,get_dev_key. The current test tree istests/consensus_sim/, whose binary builds under the CMakebuild/dir (already ignored).3. Fix
build_mingv.sh→build_mingw.shtypoThe MinGW helper script was misspelled
build_mingv.sh, butdocumentation/building.md(the "Quick Build Automation" section) instructs users to copy and runbuild_mingw.sh— a file that did not exist. Renaming the script makes the docs correct. No in-repo reference used the misspelled name, so nothing else needs updating.Verification
.qoder/confirmed ignored after removal (git check-ignore)..gitignorepath confirmed absent from the tree and unreferenced by CMake.