Backups
Point-in-Time Snapshots on Block Devices
Copying Files on File Systems
Pushing to Remotes
Configure a remote
select dolt_remote('add', 'backup', 'file:///var/share/backup/');Backup by Pushing a Branch
use backup_example;
create table test (pk int, c1 int, primary key(pk));
insert into test values (0,0);
select dolt_add('test');
select dolt_commit('-m', 'Created table and inserted values to be backed up');
+----------------------------------+
| hash |
+----------------------------------+
| slm5cql6ri8l4vd7uemvqhj6p2e2g98k |
+----------------------------------+
select dolt_push('backup', 'main');
+---------+
| success |
+---------+
| 1 |
+---------+Full Server Backups
Last updated
