We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
What is the bug?
$ git ls-files --others --exclude-standard | wc -l 137
There are currently 137 untracked files that appear when the project is built/run.
------------------------------------------------------------ Gradle 7.6.1 ------------------------------------------------------------ Build time: 2023-02-24 13:54:42 UTC Revision: 3905fe8ac072bbd925c70ddbddddf4463341f4b4 Kotlin: 1.7.10 Groovy: 3.0.13 Ant: Apache Ant(TM) version 1.10.11 compiled on July 10 2021 JVM: 17.0.8.1 (Eclipse Adoptium 17.0.8.1+1) OS: Linux 5.15.90.1-microsoft-standard-WSL2 amd64
This is annoying to see in the git log all the time, and could potentially affect Git performance if the number of files increases in the future.
Adding /bin/ to .gitignore fixes the issue.
/bin/
.gitignore
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
What is the bug?
$ git ls-files --others --exclude-standard | wc -l 137
There are currently 137 untracked files that appear when the project is built/run.
This is annoying to see in the git log all the time, and could potentially affect Git performance if the number of files increases in the future.
Adding
/bin/
to.gitignore
fixes the issue.The text was updated successfully, but these errors were encountered: