I am looking for any straightforward solution to work with Jupyter Notebooks and git since the cached data on the .ipynb files makes the diff difficult to read.
Does anyone know any standalone alternative and not server hosted?
I am looking for any straightforward solution to work with Jupyter Notebooks and git since the cached data on the .ipynb files makes the diff difficult to read.
Does anyone know any standalone alternative and not server hosted?
One option is to strip the output from the .ipynb file. Then the git diff would only track the cell data. One package that strips the output Jupyter Notebook is nbstripout.
tmp
– Aditya Apr 18 '18 at 05:22nbdime
(NoteBook DIff/MErge tools). It integrates well with jupyterlab or jupyter, or command line. – toddkaufmann Dec 19 '18 at 16:16