Thread (12 messages) flat view 12 messages, 4 authors, 2016-06-15

Re: RFH: unexpected reflog behavior with --since=

From: Jeff King <hidden>
Date: 2016-06-15 22:52:27

On Wed, Nov 09, 2011 at 05:20:32PM -0500, Jeff King wrote:
  git log -g --format='%ct %H' |
  awk '{ print $2 if $1 < SOME_TIMESTAMP }'
Hmm, that is obviously not valid awk syntax. My brain has been too fried
by perl. And the comparison goes the wrong way. A (closer to) working
example would be:

  git log -g --format='%ct %H' |
  perl -alne 'print $F[1] if $F[0] > SOME_TIMESTAMP'

But hopefully you get the point.

-Peff
Keyboard shortcuts
hback out one level
jnext message in thread
kprevious message in thread
ldrill in
Escclose help / fold thread tree
?toggle this help