* [PATCH] cg-object-id: comment the alternate id shortcut parsing
@ 2005-12-07 21:39 Jonas Fonseca
2005-12-07 22:05 ` Petr Baudis
0 siblings, 1 reply; 4+ messages in thread
From: Jonas Fonseca @ 2005-12-07 21:39 UTC (permalink / raw)
To: Petr Baudis, git
Add comment about why Cogito's own 4 digit id shortcut parser is needed.
Signed-off-by: Jonas Fonseca <fonseca@diku.dk>
---
commit 3c14cded46e110396127fc5b5e65883eb5cd60b9
tree 593da711de14cfc3f8dc1fd5773990902568b42e
parent 36c0d9fae209ab7fa889333e8eebef22e7f0f55c
author Jonas Fonseca <fonseca@diku.dk> Wed, 07 Dec 2005 08:17:04 +0100
committer Jonas Fonseca <fonseca@antimatter.localdomain> Wed, 07 Dec 2005 08:17:04 +0100
cg-object-id | 4 +++-
1 files changed, 3 insertions(+), 1 deletions(-)
diff --git a/cg-object-id b/cg-object-id
index 56d9f91..ea04dca 100755
--- a/cg-object-id
+++ b/cg-object-id
@@ -52,7 +52,9 @@ normalize_id()
id="$revid"
valid=1
- # Short id's must be lower case and at least 4 digits.
+ # Short id's must be lower case and at least 4 digits. git-rev-parse(1)
+ # allows only down to 5 digits and we want to show the list of matched
+ # ids.
elif [[ "$id" == [0-9a-f][0-9a-f][0-9a-f][0-9a-f]* ]]; then
idpref=${id:0:2}
idpost=${id:2}
--
Jonas Fonseca
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH] cg-object-id: comment the alternate id shortcut parsing
2005-12-07 21:39 [PATCH] cg-object-id: comment the alternate id shortcut parsing Jonas Fonseca
@ 2005-12-07 22:05 ` Petr Baudis
2005-12-07 22:14 ` Jonas Fonseca
0 siblings, 1 reply; 4+ messages in thread
From: Petr Baudis @ 2005-12-07 22:05 UTC (permalink / raw)
To: Jonas Fonseca; +Cc: git
Dear diary, on Wed, Dec 07, 2005 at 10:39:43PM CET, I got a letter
where Jonas Fonseca <fonseca@diku.dk> said that...
> - # Short id's must be lower case and at least 4 digits.
> + # Short id's must be lower case and at least 4 digits. git-rev-parse(1)
> + # allows only down to 5 digits and we want to show the list of matched
> + # ids.
Huh. The code in sha1_name.c speaks differently and it works as well:
$ git-rev-parse b1fc
b1fcca45069d4f6b00a9ac7136be4268d09fd6b9
--
Petr "Pasky" Baudis
Stuff: http://pasky.or.cz/
VI has two modes: the one in which it beeps and the one in which
it doesn't.
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] cg-object-id: comment the alternate id shortcut parsing
2005-12-07 22:05 ` Petr Baudis
@ 2005-12-07 22:14 ` Jonas Fonseca
2005-12-07 22:19 ` Jonas Fonseca
0 siblings, 1 reply; 4+ messages in thread
From: Jonas Fonseca @ 2005-12-07 22:14 UTC (permalink / raw)
To: Petr Baudis; +Cc: git
Petr Baudis <pasky@suse.cz> wrote Wed, Dec 07, 2005:
> Dear diary, on Wed, Dec 07, 2005 at 10:39:43PM CET, I got a letter
> where Jonas Fonseca <fonseca@diku.dk> said that...
> > - # Short id's must be lower case and at least 4 digits.
> > + # Short id's must be lower case and at least 4 digits. git-rev-parse(1)
> > + # allows only down to 5 digits and we want to show the list of matched
> > + # ids.
>
> Huh. The code in sha1_name.c speaks differently and it works as well:
>
> $ git-rev-parse b1fc
> b1fcca45069d4f6b00a9ac7136be4268d09fd6b9
I had this one testcase:
~/src/elinks/0.11 > cg-object-id --verify e6b6
cg-object-id: unrecognized option `--verify'
~/src/elinks/0.11 > cg-object-id e6b6
e6b65b543108bfeb95ea24978112b46e34cfde87
Could it have something to do with the local packing?
--
Jonas Fonseca
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] cg-object-id: comment the alternate id shortcut parsing
2005-12-07 22:14 ` Jonas Fonseca
@ 2005-12-07 22:19 ` Jonas Fonseca
0 siblings, 0 replies; 4+ messages in thread
From: Jonas Fonseca @ 2005-12-07 22:19 UTC (permalink / raw)
To: Petr Baudis; +Cc: git
Jonas Fonseca <fonseca@diku.dk> wrote Wed, Dec 07, 2005:
> Petr Baudis <pasky@suse.cz> wrote Wed, Dec 07, 2005:
> > Dear diary, on Wed, Dec 07, 2005 at 10:39:43PM CET, I got a letter
> > where Jonas Fonseca <fonseca@diku.dk> said that...
> > > - # Short id's must be lower case and at least 4 digits.
> > > + # Short id's must be lower case and at least 4 digits. git-rev-parse(1)
> > > + # allows only down to 5 digits and we want to show the list of matched
> > > + # ids.
> >
> > Huh. The code in sha1_name.c speaks differently and it works as well:
> >
> > $ git-rev-parse b1fc
> > b1fcca45069d4f6b00a9ac7136be4268d09fd6b9
>
> I had this one testcase:
>
~/src/elinks/0.11 > git-rev-parse --verify e6b6
error: short SHA1 e6b6 is ambiguous.
fatal: Needed a single revision
> ~/src/elinks/0.11 > cg-object-id e6b6
> e6b65b543108bfeb95ea24978112b46e34cfde87
>
> Could it have something to do with the local packing?
--
Jonas Fonseca
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2005-12-07 22:20 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-12-07 21:39 [PATCH] cg-object-id: comment the alternate id shortcut parsing Jonas Fonseca
2005-12-07 22:05 ` Petr Baudis
2005-12-07 22:14 ` Jonas Fonseca
2005-12-07 22:19 ` Jonas Fonseca
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).