You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Run Deepnote locally inside your IDE and unlock the next generation of data workflows:
21
20
22
21
-**Rich block types:** Combine Python, Markdown, data visualizations, tables, and more — all in one place
@@ -66,6 +65,7 @@ Open the Command Palette (`Cmd+Shift+P` or `Ctrl+Shift+P`) and type `Deepnote` t
66
65
|`Deepnote: Import Notebook`| Import an existing notebook into your project |
67
66
|`Notebook: Select Notebook Kernel`| Select or switch kernels within your notebook |
68
67
|`Notebook: Change Cell Language`| Change the language of the cell currently in focus |
68
+
|`Deepnote: Enable Snapshots`| Enable snapshot mode for the current workspace |
69
69
70
70
### Database integrations
71
71
@@ -89,6 +89,24 @@ SELECT * FROM users WHERE created_at > '2024-01-01'
89
89
90
90
Results are displayed as interactive tables that you can explore and export.
91
91
92
+
### Snapshot mode
93
+
94
+
Snapshot mode gives you a historical, portable record of all notebook executions without polluting your main project files. This makes it easier to work with Git since outputs are stored separately from your source code.
95
+
96
+
**How it works:**
97
+
98
+
- Execution outputs are saved to a `snapshots/` folder alongside your project
99
+
- Your main `.deepnote` file stays clean (no outputs), making diffs readable
100
+
- Each "Run All" execution creates a timestamped snapshot for historical tracking
101
+
- Running individual cells updates only the latest snapshot
102
+
103
+
**To enable:**
104
+
105
+
1. Open Command Palette (`Cmd+Shift+P` or `Ctrl+Shift+P`)
106
+
2. Run `Deepnote: Enable Snapshots`
107
+
108
+
Once enabled, snapshots are automatically created when you execute notebooks. You can add the `snapshots/` folder to `.gitignore` to keep outputs local, or commit them to share execution history with your team.
0 commit comments