tiny.sql.fetchHistory
Defined in sync.
Source
Source: lib/sql/src/sync.zig:1360
zig
pub fn fetch(allocator: Allocator, local: *history_mod.History, remote: *const history_mod.History, options: FetchOptions) Error!Stats { const refs = try remote.refList(allocator); defer history_mod.freeRefList(allocator, refs); var pack = try exportMissingRefs(allocator, remote, local, refs); defer pack.deinit(); var stats = try fetchPack(allocator, local, &pack, options); if (options.prune) stats.refs += try pruneRemoteTrackingRefs(allocator, local, options.remote, refs); return stats;}Source: lib/sql/src/root.zig:145
zig
pub const fetchHistory = sync.fetch;Audit
| Definitions | 1 |
|---|---|
| Public names | 2 |
| Members | 0 |
| Version | 26.7.0 |
| Revision | daab053ee433 |