gitignore bug
Open
Nobody has claimed this yet.
- Dominant language
- C++
- Stars
- 624
- Forks
- 170
- PR merge metrics
- No merged PRs in 30d
Description
As title, in tools/cgeist/.gitignore there is:
```
*.time *.exec1 *.out1
```
But on my machine this will never ignore the files with extension .exec1 and .out1, I think it should be simply changed to:
```
*.time
*.exec1
*.out1
```
Contributor guide
No contributing guide indexed for this repository
First steps
- Read the whole issue, then the project's contributing guide.
- Comment on the issue to say you are picking it up — it saves two people doing the same work.
- Fork the repository and make your change on a branch.
- Open a pull request that references the issue number.
Research direction
Open tools/cgeist/.gitignore and review how its ignore patterns are parsed. Verify the file separately ignores .time, .exec1, and .out1 files, then confirm the behavior with Git before considering the issue done.
Written by the indexing model from the issue text.
Assessment
- Tech stack
- git
- Domain
- tooling
- Issue type
- Bug
- Difficulty
- 1/5
- Estimated time
- Under an hour
- Activity status
- Stale
- Clarity
- Clearly specified
- Newbie friendliness
- 45/100