tiny.sql.pushHistoryFileFastForwardTo
Defined in sync.
Source
Source: lib/sql/src/sync.zig:1455
zig
pub fn pushFileFastForwardTo(allocator: Allocator, local: *const history_mod.History, remote: FileRemote, local_ref_name: []const u8, remote_ref_name: []const u8) Error!Stats { var lock = try lockFileRemote(allocator, remote); defer lock.release(); var remote_history = try history_mod.History.open(allocator, remote.dir, .{ .io = remote.io, .path = remote.path, .recovery = .reject }); defer remote_history.deinit(); return try pushFastForwardTo(allocator, local, &remote_history, local_ref_name, remote_ref_name);}Source: lib/sql/src/root.zig:155
zig
pub const pushHistoryFileFastForwardTo = sync.pushFileFastForwardTo;Audit
| Definitions | 1 |
|---|---|
| Public names | 2 |
| Members | 0 |
| Version | 26.7.0 |
| Revision | daab053ee433 |