Kapil Sharma
Kapil Sharma

Reputation: 1432

Version control for IPython notebook

Should we be committing the .ipynb_checkpoints directory into Git or SVN version control for an IPython Notebook?

Upvotes: 5

Views: 616

Answers (1)

mbatchkarov
mbatchkarov

Reputation: 16069

No, you should not. Checkpoints are temporary snapshots of your notebooks, in case anything goes wrong (e.g. power outage, etc). This of a checkpoint as the result of saving your notebook. Do you commit each time you make a change and save your that change to disk?

Upvotes: 5

Related Questions