-
Notifications
You must be signed in to change notification settings - Fork 95
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
nbstripout installation causes incorrect 'git status' results #65
Comments
What do you get as |
I generally see nothing when I run get diff on those files, but I haven't tested them all. (can't share them since it's my work notebooks anyways) As I mentioned, It's especially interesting that these files are gone when I uninstall nbstripout and install it again, which I weird. |
Today I found that these changes show up after 'git pull', and I looked at a few other diffs and found that they are diffs between before) notebooks with output after) notebook with output stripped. So maybe the git maybe telling me to strip the output out from some notebooks which contains outputs from previous commits. Does this make sense? But I still don't understand why these notebooks show up after 'git pull' and why they're gone after uninstall/reinstall. |
So what exactly does Also could you run a |
@jykim Any update? |
This might be related to an issue I posted about here. I still haven't figured it out, so any help is welcome. |
I have the same problem: when nbstripout is enabled and I checkout several files, the omitting of changes in these files is not reflected by git status (git status shows their presence, the changes are actually omitted). If I do 'nbstripout --uninstall' for the repo and then do 'nbstripout --install' again then the changes are reflected by git status. |
@stas00 I've looked at your issue and am about as puzzled as you are. Thanks for documenting it so thoroughly. Guess we'll have to find a better git plumber than I am to explain this behavior. |
Currently, pretty much any time one of our developers forgets to enable the filter and commits w/o stripping the notebooks out, it breaks What we really need is a way to enforce content filters repo-wide, except git doesn't support that due to security reasons (overriding user's config is unsafe). I'm not sure what to do about it. It's a constant problem for us. Perhaps there is a need to re-design content filters so that they aren't configured via a private .gitconfig and can be automatically installed for everybody (note that our repo carries its own version of the nbstripout filter, so the culprit is just not being able to enforce the configuration). Unless perhaps I'm missing something and you have some insights of another way of configuring it, so that the user doesn't need to do anything. And of course, there are server-side hooks which could do the policing, but it doesn't sound like the best solution. In particular since last I looked github doesn't support those. |
Yeah, to me this sounds like a Git issue rather than an nbstripout issue and I'm not sure what (if anything) we could fix in nbstripout to help with this. Have you considered raising the issue on the Git mailing list? |
I already did so to no avail. If it weren't for github and we were running our own git backend then server-side hooks could do the policing, but since github doesn't support that, there is nothing one can do to enforce that. The best "enforcing" solution I found is to run a CI job that flags this problem as it appears, and hopefully the developers watch for [x]'s in their commit status on github.
and the best resolution I found is:
which in the fastai project is done with a script (
|
FYI, we're discussing adding a dedicated |
I see the same problem, stopped using the tool after 2 days. |
@DanielRudnicki Reproduction steps for the failures you're seeing would help. |
I think I'm seeing the same issue and may have found a fix. I've been getting (erroneous) complaints for ages about modified ipynb files in (just cloned or pulled) git repositories, and finally decided to track it down. I found that the error occurs when file ~/.config/git/attributes contains the lines
If I comment out all these lines, the error goes away. Note that ~/.gitconfig contains the lines
So nbstripout is still installed and runs fine. Also note that I've encountered the same issue (and the same fix works) on both MacOS and Ubuntu machines. |
@rhstanton Are you sure |
No, I'm no longer sure! I just tried a small test where I reran some code in a notebook file, and without the attributes, git diff reports that the file has changed, while with the attributes, git diff reports no changes. I guess my "fix" was just to turn off nbstripout - not as interesting as I'd hoped... |
OK, thanks for confirming! If you have any further insights on this issue please send them along - this one is still a mystery! |
I seem to see changes for notebooks I haven't touched since I installed nbstripout. Interestingly, when I uninstall nbstripout and install it again, the changes are gone. Besides general performance issue, this prevents us from adopting nbstripout as a team.
----(after uninstall nbstripout and install it again)---
The text was updated successfully, but these errors were encountered: