| changeset 93: |
1bd46b3c996d |
| parent 92: | fdf64e606a2a |
| child 94: | d3a9753eea24 |
| author: |
jim@jtan.com |
| date: |
Sat Nov 10 19:54:09 2007 -0500 (4 years ago) |
| files: |
local/git-quick.html |
| description: |
sed is greedy, so limit the regex match |
1--- a/local/git-quick.html Sat Nov 10 20:16:34 2007 -0600
2+++ b/local/git-quick.html Sat Nov 10 19:54:09 2007 -0500
3@@ -114,7 +114,7 @@
4 the current state of a file. It shows each line, prefixed with the commit
5 identifier which last changed that line. (If the default version of <b>git
6 blame</b> is difficult to read on an 80 charater terminal, try <b>git blame
7-$FILE | sed 's/(.*)//'</b> to see more of the file itself.)</p>
8+$FILE | sed 's/([^)]*)//'</b> to see more of the file itself.)</p>
9
10 <a name="versions"><h2>Working with historical versions</h2>
11