Reputation: 1432
Should we be committing the .ipynb_checkpoints directory into Git or SVN version control for an IPython Notebook?
Upvotes: 5
Views: 616
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