kdocs
changeset 93:1bd46b3c996d
sed is greedy, so limit the regex match
| author | jim@jtan.com |
|---|---|
| date | Sat Nov 10 19:54:09 2007 -0500 (2 years ago) |
| parents | fdf64e606a2a |
| children | d3a9753eea24 |
| files | local/git-quick.html |
line diff
1.1 --- a/local/git-quick.html Sat Nov 10 20:16:34 2007 -0600 1.2 +++ b/local/git-quick.html Sat Nov 10 19:54:09 2007 -0500 1.3 @@ -114,7 +114,7 @@ 1.4 the current state of a file. It shows each line, prefixed with the commit 1.5 identifier which last changed that line. (If the default version of <b>git 1.6 blame</b> is difficult to read on an 80 charater terminal, try <b>git blame 1.7 -$FILE | sed 's/(.*)//'</b> to see more of the file itself.)</p> 1.8 +$FILE | sed 's/([^)]*)//'</b> to see more of the file itself.)</p> 1.9 1.10 <a name="versions"><h2>Working with historical versions</h2> 1.11
