1. 08 Oct, 2014 4 commits
    • revwalk: catch no-push and no-hide cases · 9b5d6cea
      If there have been no pushes, we can immediately return ITEROVER. If
      there have been no hides, we must not run the uninteresting pre-mark
      phase, as we do not want to hide anything and this would simply cause us
      to spend time loading objects.
      Carlos Martín Nieto committed
    • revwalk: mark uninteresting only up to the common ancestors · e7970576
      This introduces a phase at the start of preparing a walk which pre-marks
      uninteresting commits, but only up to the common ancestors.
      
      We do this in a similar way to git, by walking down the history and
      marking (which is what we used to do), but we keep a time-sorted
      priority queue of commits and stop marking as soon as there are only
      uninteresting commits in this queue.
      
      This is a similar rule to the one used to find the merge-base. As we
      keep inserting commits regardless of the uninteresting bit, if there are
      only uninteresting commits in the queue, it means we've run out of
      interesting commits in our walk, so we can stop.
      
      The old mark_unintesting() logic is still in place, but that stops
      walking if it finds an already-uninteresting commit, so it will stop on
      the ones we've pre-marked; but keeping it allows us to also hide those
      that are hidden via the callback.
      Carlos Martín Nieto committed
    • revwalk: keep a single list of user inputs · ad66bf88
      The old separation was due to the old merge-base finding, so it's no
      longer necessary.
      Carlos Martín Nieto committed
    • revwalk: clear the flags on reset · 42835aa6
      These store merge-base information which is only valid for a single run.
      Carlos Martín Nieto committed
  2. 01 Oct, 2014 2 commits
  3. 30 Sep, 2014 3 commits
  4. 29 Sep, 2014 4 commits
  5. 26 Sep, 2014 7 commits
  6. 25 Sep, 2014 3 commits
  7. 24 Sep, 2014 3 commits
  8. 17 Sep, 2014 13 commits
  9. 16 Sep, 2014 1 commit