author | Shawn O. Pearce <spearce@spearce.org> | |
Sat, 30 Jun 2007 06:42:47 +0000 (02:42 -0400) | ||
committer | Junio C Hamano <gitster@pobox.com> | |
Sat, 30 Jun 2007 07:00:30 +0000 (00:00 -0700) | ||
commit | bfc04bb9b847912ee41a21fc23110962851878b2 | |
tree | 4f55608848764038be2a8e6e454a66d73448074b | tree | snapshot |
parent | 124d3e4cacdf018ddad3449919f471a624e85433 | commit | diff |
Correct usages of sed in git-tag for Mac OS X
Both `git-tag -l` and `git tag -v` fail on Mac OS X due to their
non-standard uses of sed. Actually `git tag -v` fails because the
underlying git-tag-verify uses a non-standard sed command.
We now stick to only standard sed, which does make our sed scripts
slightly more complicated, but we can actually list tags with more
than 0 lines of additional context and we can verify signed tags
with gpg. These major Git functions are much more important than
saving two or three lines of a simple sed script.
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Both `git-tag -l` and `git tag -v` fail on Mac OS X due to their
non-standard uses of sed. Actually `git tag -v` fails because the
underlying git-tag-verify uses a non-standard sed command.
We now stick to only standard sed, which does make our sed scripts
slightly more complicated, but we can actually list tags with more
than 0 lines of additional context and we can verify signed tags
with gpg. These major Git functions are much more important than
saving two or three lines of a simple sed script.
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
git-tag.sh | diff | blob | history | |
git-verify-tag.sh | diff | blob | history |