-
Notifications
You must be signed in to change notification settings - Fork 48
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
Use with git gives messed git diffs #130
Comments
This question is maybe better focused outside this plugin, but have you tried https://github.com/deshaw/nbstripout-fast? With this, nbdime does not show timestamps diff nor commit them. |
Thank you for the library reference. nbstripout-fast is good for this purpose to speed it up, and remove one of the drawbacks of this partial solution. I'll update the post with the second quicker solution as well. It's hard to say/find the best place to track this type of problem. However, most discussions cover mostly removing outputs from cells, not metadata. This extension produces a substantial amount of frequently changing metadata, so I've decided to put this problem with my partial solution here. Feel free to close this issue, if you want. I wrote my post to help others because I didn't find any good solution in other places/issues/stacks to this particular sub-problem. So now, I hope it'll be possible to find it easier, regardless of whether it is closed or not. |
This extension produces no metadata actually - its just a renderer. For simplicity, we simply turn on an option to produce it in JupyterLab itself. |
When we use this extension with git-based sytems it produces 10(5*2) lines of diffs per every changed cell.
This problem is well known without any perfect solution. Based on the many reference solutions, including the list from stackoverflow and a good advice jupyterlab/jupyterlab#9444 (comment) and other stackoverflow solutions. I propose my partial workaround setup.
Partial workaround:
We could use this extension without massive diffs is based on two stages:
Prevent from pushing to git.
.gitattributes
file in the root of your repository:.gitattributes
file:Prevent from displaying diffs in jupyterlab-git:
nbdime_config.json
):nbdime_config.json
(e.g.~/.jupyter/nbdime_config.json
)or we could try with the more precise exclusion like:
"/cells/*/metadata":['execution']
.4. Restart jupyter lab
Drawbacks:
nbstripout-fast
)I put it that solution, especially for people who want to use this extension without the need to remove other info from notebooks (e.g. outputs).
However, I would love to see a better solution.
The text was updated successfully, but these errors were encountered: