MONDAY, MAY 18, 2026
binutils — Proposed
Add .dirstamp to .gitignore
Adds the `.dirstamp` file to `.gitignore` to prevent it from being tracked in the repository.
This patch adds .dirstamp to the .gitignore file in the binutils repository. This prevents the file from being inadvertently tracked by Git. This is a minor cleanup that improves the overall hygiene of the repository.
In Details
The patch adds .dirstamp to the .gitignore file. This prevents autotools-generated timestamp files from being added to the repository.
For Context
.gitignore is a file that specifies intentionally untracked files that Git should ignore. This patch updates the .gitignore file to exclude .dirstamp files, which are created by the build system. This prevents these automatically generated files from cluttering the repository.