* Problem with --skip and --max-count
@ 2008-08-22 15:06 Govind Salinas
0 siblings, 0 replies; only message in thread
From: Govind Salinas @ 2008-08-22 15:06 UTC (permalink / raw)
To: Git Mailing List
Hey Folks,
I have been working on my porcelain, trying to get it semi-polished and
I noticed that the behavior of --skip and --max-count is not what I expected
in several cases.
For simple output, it works as I think it should, but whenever you are doing
some kind of filtering or non-standard commit limiting, such as passing
--follow, it does not print out the first X results. Similarly --skipping the
number of items that you got back does not put get you to where you left
off.
Basically, I am trying to use --skip and --max-count to do paging, but
when I add filters, it doesn't work very well. For example...
$ git log --pretty=oneline --follow -- pyrite/git/repository.py | wc -l
103
$ git log --pretty=oneline --follow -20 -- pyrite/git/repository.py | wc -l
2
$ git log --pretty=oneline --follow -20 --skip=20 --
pyrite/git/repository.py | wc -l
2
So where I am trying to page by 20, I am only getting a random number of
commits depending on how many fit the criteria in the window. I understand
this is probably by design, but it is not optimal to work with. I had to
manually do the skipping and limiting, which would probably have been
more efficient if it had been done by git. Would it be possible to get
git to limit and skip based on the number of results it had returned rather
than the number of result it had processed? Even new cmd line args
would work.
I am using 1.6.0 BTW.
Thanks,
Govind
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2008-08-22 15:07 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-08-22 15:06 Problem with --skip and --max-count Govind Salinas
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).