mirror of
https://git.proxmox.com/git/libgit2
synced 2026-01-01 05:04:06 +00:00
Update commit_time along with committer.
This commit is contained in:
parent
f24fa0880c
commit
88d035bd15
@ -282,6 +282,7 @@ void git_commit_set_committer(git_commit *commit, const char *name, const char *
|
||||
|
||||
git_person__free(commit->committer);
|
||||
commit->committer = git_person__new(name, email, time);
|
||||
commit->commit_time = time;
|
||||
}
|
||||
|
||||
void git_commit_set_message(git_commit *commit, const char *message)
|
||||
@ -317,5 +318,3 @@ void git_commit_add_parent(git_commit *commit, git_commit *new_parent)
|
||||
node->next = commit->parents;
|
||||
commit->parents = node;
|
||||
}
|
||||
|
||||
|
||||
|
||||
@ -58,6 +58,7 @@ BEGIN_TEST(writenew_test)
|
||||
must_be_true(strcmp(committer->name, COMMITTER_NAME) == 0);
|
||||
must_be_true(strcmp(committer->email, COMMITTER_EMAIL) == 0);
|
||||
must_be_true(committer->time == 123456789);
|
||||
must_be_true(git_commit_time(commit) == 123456789);
|
||||
|
||||
must_be_true(strcmp(git_commit_message(commit), COMMIT_MESSAGE) == 0);
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user