X Tutup
The Wayback Machine - https://web.archive.org/web/20210210090106/https://github.com/github/gitignore/pull/3436/commits
Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rust only had top-level ignores, and was missing a major one #3436

Merged
merged 1 commit into from Jul 3, 2020

Commits on Jun 12, 2020

  1. Fixing target and adding debug to Rust gitignore

    The problem here was two fold:
    1. the folder "/target/" would be top-level of the repo only, it should be "target/" to properly exclude target folders anywhere in the repo
    2. the default Rust/Cargo folder when compiling code is "debug/", which gets used perhaps more often that "target/", added that
    theJollySin committed Jun 12, 2020
X Tutup