diff options
author | Vicent Martà <vicent@github.com> | 2012-02-11 06:44:54 -0800 |
---|---|---|
committer | Vicent Martà <vicent@github.com> | 2012-02-11 06:44:54 -0800 |
commit | 6d39c0dd6fc138fdd994e7b31ab7f5eed85d2688 (patch) | |
tree | 963525055fff78e01ae67a0e0004a8b76beae000 | |
parent | f19e3ca28835eab8dbef62915c475caa18f355fe (diff) | |
parent | 97313ce2a36e6184334bd070faa8b87b1b150621 (diff) | |
download | libgit2-6d39c0dd6fc138fdd994e7b31ab7f5eed85d2688.tar.gz |
Merge pull request #554 from carlosmn/revwalk-reset
revwalk: unmark commits as uninteresting on reset
-rw-r--r-- | src/revwalk.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/revwalk.c b/src/revwalk.c index d632a19b8..9c8bc02e9 100644 --- a/src/revwalk.c +++ b/src/revwalk.c @@ -558,6 +558,7 @@ void git_revwalk_reset(git_revwalk *walk) commit->seen = 0; commit->in_degree = 0; commit->topo_delay = 0; + commit->uninteresting = 0; ); git_pqueue_clear(&walk->iterator_time); |