Follow-up to #95: untrack .res and Together modelling leftovers - #103
Open
omonien wants to merge 1 commit into
Open
Follow-up to #95: untrack .res and Together modelling leftovers#103omonien wants to merge 1 commit into
omonien wants to merge 1 commit into
Conversation
…umm#95). .gitignore already ignored *.res / *.txaPackage / *.txvpck; this untracks the files that were still in the tree. All {$R *.res} links are standard IDE project resources regenerated from .dproj (VersionInfo/MainIcon). Source icons (Hash.ico) remain tracked. Modelling trees (LibrarySupport, ModelSupport_*) and diagram configs (*.tvsconfig, *.txvcls) are removed; gitignore patterns extended.
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.
For Markus — follow-up to #95
In #95 we agreed that:
.rescan stay ignored (IDE regenerates from.dproj)*.txaPackage/*.txvpck) can be ignored now that modelling is gone.gitignoreonly stops new noise. Files that were already tracked stayed in the tree. This PR removes them from the repo.What I checked (
.res)Every tracked
.resis a normal Delphi project resource linked with{$R *.res}/{$R *.RES}— none is an external/hand-maintained resource:{$R *.res}in.dprfiles — no{$R SomeCustom.res}.rcfilesHash.icoetc.);dprojreferences them asMainIcon.dprojand is regenerated into.resby the IDE/buildConclusion: safe to untrack all of them. After clone, the IDE (or first build) recreates
.resas needed.What I removed
.resSource/LibrarySupport/(entire)Unit Tests/ModelSupport_DECDUnitTestSuite/(entire, incl.Klassendiagramm.txvcls)*_project.tvsconfig/*_prjgroup.tvsconfig.gitignoreextensionAlready had
*.res,*.txaPackage,*.txvpck. Added:*.tvsconfig*.txvclsSource/LibrarySupport/Unit Tests/ModelSupport_*/Comment updated: no longer says “tracked files stay until cleanup”.
What stays tracked (on purpose)
Hash.ico, PNG launch images, …).dfm/.fmx(form resources via{$R *.dfm}/{$R *.fmx})Risk
Very low — no source or build logic change. First IDE open of a demo/test project may recreate a local
.res(ignored, not committed).Test plan
.resis recreated locallyHappy to split
.resvs modelling if you prefer two reviews; kept as one follow-up because both were the open end of #95.