* precise keyword matching for pretty switch
@ 2007-02-01 22:43 Nicolas Vilz
2007-02-02 13:17 ` Eric Wong
0 siblings, 1 reply; 2+ messages in thread
From: Nicolas Vilz @ 2007-02-01 22:43 UTC (permalink / raw)
To: git
[-- Attachment #1: Type: text/plain, Size: 854 bytes --]
hi,
i noticed today, that the pretty-switch in git-log -diff and many other
tools triggers to "oneline" if you just type an "o" after --pretty=
so, not only
git log --pretty=oneline
but also
git log --pretty=online
git log --pretty=offline
git log --pretty=omfg
and finally (just to make it short *G*)
git log --pretty=osolomio
does trigger the oneline-feature. Perhaps this is not intended to work
as it works now. I would recommend, that the switch should only accept
the fully matched keyword and not just a lowercase "o" as the first
letter of the keywords following after --pretty=, just to prevent people
getting bad habbits.
I noticed this by accident, because i made a typo (i typed "online" a few
times, and then noticed that an o is sufficient), perhaps nobody else
noticed before.
Sincerly
Nicolas
[-- Attachment #2: Type: application/pgp-signature, Size: 189 bytes --]
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: precise keyword matching for pretty switch
2007-02-01 22:43 precise keyword matching for pretty switch Nicolas Vilz
@ 2007-02-02 13:17 ` Eric Wong
0 siblings, 0 replies; 2+ messages in thread
From: Eric Wong @ 2007-02-02 13:17 UTC (permalink / raw)
To: Nicolas Vilz; +Cc: Junio C Hamano, git
Nicolas Vilz <niv@iaglans.de> wrote:
> hi,
>
> i noticed today, that the pretty-switch in git-log -diff and many other
> tools triggers to "oneline" if you just type an "o" after --pretty=
>
> so, not only
>
> git log --pretty=oneline
>
> but also
>
> git log --pretty=online
> git log --pretty=offline
> git log --pretty=omfg
Oops, that's unexpected.
> and finally (just to make it short *G*)
>
> git log --pretty=osolomio
>
> does trigger the oneline-feature. Perhaps this is not intended to work
> as it works now. I would recommend, that the switch should only accept
> the fully matched keyword and not just a lowercase "o" as the first
> letter of the keywords following after --pretty=, just to prevent people
> getting bad habbits.
No. The abbreviations are intentional. It's anything but a bad habit.
--pretty=o
--pretty=on
--pretty=one
--pretty=onel
--pretty=oneli
--pretty=onelin
--pretty=oneline
are all valid abbreviations. I'm a lazy git :)
I also intend to resurrect gitopt in some form in the near future...
From: Eric Wong <normalperson@yhbt.net>
Date: Fri, 2 Feb 2007 05:10:25 -0800
Subject: [PATCH] Disallow invalid --pretty= abbreviations
--pretty=o is a valid abbreviation, --pretty=omfg is not
Noticed by: Nicolas Vilz
Signed-off-by: Eric Wong <normalperson@yhbt.net>
---
commit.c | 3 ++-
1 files changed, 2 insertions(+), 1 deletions(-)
diff --git a/commit.c b/commit.c
index 9b2b842..3e8c872 100644
--- a/commit.c
+++ b/commit.c
@@ -47,7 +47,8 @@ enum cmit_fmt get_commit_format(const char *arg)
if (*arg == '=')
arg++;
for (i = 0; i < ARRAY_SIZE(cmt_fmts); i++) {
- if (!strncmp(arg, cmt_fmts[i].n, cmt_fmts[i].cmp_len))
+ if (!strncmp(arg, cmt_fmts[i].n, cmt_fmts[i].cmp_len) &&
+ !strncmp(arg, cmt_fmts[i].n, strlen(arg)))
return cmt_fmts[i].v;
}
--
Eric Wong
^ permalink raw reply related [flat|nested] 2+ messages in thread
end of thread, other threads:[~2007-02-02 13:17 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-02-01 22:43 precise keyword matching for pretty switch Nicolas Vilz
2007-02-02 13:17 ` Eric Wong
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).