Skip to content

Commit 4e5fd9d

Browse files
committed
Merge branch 'jc/reflog-iterator-callback-doc'
Document the parameters given to the reflog entry iterator callback functions. * jc/reflog-iterator-callback-doc: refs: document callback for reflog-ent iterators
2 parents 63a2e8b + e6e94f3 commit 4e5fd9d

File tree

1 file changed

+23
-1
lines changed

1 file changed

+23
-1
lines changed

refs.h

Lines changed: 23 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -463,7 +463,29 @@ int delete_reflog(const char *refname);
463463

464464
/*
465465
* Callback to process a reflog entry found by the iteration functions (see
466-
* below)
466+
* below).
467+
*
468+
* The committer parameter is a single string, in the form
469+
* "$GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL>" (without double quotes).
470+
*
471+
* The timestamp parameter gives the time when entry was created as the number
472+
* of seconds since the UNIX epoch.
473+
*
474+
* The tz parameter gives the timezone offset for the user who created
475+
* the reflog entry, and its value gives a positive or negative offset
476+
* from UTC. Its absolute value is formed by multiplying the hour
477+
* part by 100 and adding the minute part. For example, 1 hour ahead
478+
* of UTC, CET == "+0100", is represented as positive one hundred (not
479+
* postiive sixty).
480+
*
481+
* The msg parameter is a single complete line; a reflog message given
482+
* to refs_delete_ref, refs_update_ref, etc. is returned to the
483+
* callback normalized---each run of whitespaces are squashed into a
484+
* single whitespace, trailing whitespace, if exists, is trimmed, and
485+
* then a single LF is added at the end.
486+
*
487+
* The cb_data is a caller-supplied pointer given to the iterator
488+
* functions.
467489
*/
468490
typedef int each_reflog_ent_fn(
469491
struct object_id *old_oid, struct object_id *new_oid,

0 commit comments

Comments
 (0)