| Top |
Functions
ggit_reflog_entry_ref ()
GgitReflogEntry *
ggit_reflog_entry_ref (GgitReflogEntry *reflog_entry);
Atomically increments the reference count of reflog_entry
by one.
This function is MT-safe and may be called from any thread.
ggit_reflog_entry_unref ()
void
ggit_reflog_entry_unref (GgitReflogEntry *reflog_entry);
Atomically decrements the reference count of reflog_entry
by one.
If the reference count drops to 0, reflog_entry
is freed.
ggit_reflog_entry_get_old_id ()
GgitOId *
ggit_reflog_entry_get_old_id (GgitReflogEntry *reflog_entry);
Gets the old GgitOId.
ggit_reflog_entry_get_new_id ()
GgitOId *
ggit_reflog_entry_get_new_id (GgitReflogEntry *reflog_entry);
Gets the new GgitOId.
ggit_reflog_entry_get_committer ()
GgitSignature *
ggit_reflog_entry_get_committer (GgitReflogEntry *reflog_entry);
Gets the committer as a GgitSignature.
ggit_reflog_entry_get_message ()
const gchar *
ggit_reflog_entry_get_message (GgitReflogEntry *reflog_entry);
Gets the message.
