-
-
Notifications
You must be signed in to change notification settings - Fork 25.9k
Lots of new untracked files after merging with master? #17341
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
Comments
Alternatively you can also copy/paste this if you're on a unix system:
You shouldn't need to re-install |
i don't know if this is the same issue as you are pointing out @NicolasHug , but |
Yes these are different things: I think you're referring to e.g. |
Thx @NicolasHug, |
It's been a while, this is probably not relevant anymore so I'll close and unpin the issue |
TLDR: run
git clean -xi
and remove all files that you didn't create yourself, then re-install, or use snippet below.If you're contributing a PR and you recently merged upstream/master, you should see a lot untracked files when running
git status
.This is normal: these files were previously automatically generated and added to the
.gitignore
. They have now been taken out of the gitignore (#17132) and can be safely removed.To remove them, you can use
git clean -xi
. This will also remove installation files like .so, dll or .c files, so you'll finally need to re-install scikit-learn by running e.g.pip install -e .
ormake in
.The text was updated successfully, but these errors were encountered: