# HG changeset patch # User jim@jtan.com # Date 1194742449 18000 # Node ID 1bd46b3c996d123c9e4d44d4ffbc78fc415d9487 # Parent fdf64e606a2aca20edc4139430e95b9bcb068cb2 sed is greedy, so limit the regex match diff -r fdf64e606a2a -r 1bd46b3c996d local/git-quick.html --- a/local/git-quick.html Sat Nov 10 20:16:34 2007 -0600 +++ b/local/git-quick.html Sat Nov 10 19:54:09 2007 -0500 @@ -114,7 +114,7 @@ the current state of a file. It shows each line, prefixed with the commit identifier which last changed that line. (If the default version of git blame is difficult to read on an 80 charater terminal, try git blame -$FILE | sed 's/(.*)//' to see more of the file itself.)

+$FILE | sed 's/([^)]*)//' to see more of the file itself.)

Working with historical versions