git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] cg-object-id: accept $id when .git/refs/$id exists
@ 2005-11-29 23:57 Jonas Fonseca
  0 siblings, 0 replies; only message in thread
From: Jonas Fonseca @ 2005-11-29 23:57 UTC (permalink / raw)
  To: Petr Baudis; +Cc: git

Makes the (universal) -r argument work better with tools like bisect.

Signed-off-by: Jonas Fonseca <fonseca@diku.dk>

---

 ... until cg-object-id will use git-rev-parse.

commit c0a9b8feb79d72f7c02f37392da840dbad446dbd
tree 8a44e96d29c2171ce1915165ce84d1b1f3e27807
parent f3576824058588cf3fdeca0a8b5ae46b9d37a812
author Jonas Fonseca <fonseca@diku.dk> Mon, 28 Nov 2005 03:49:11 +0100
committer Jonas Fonseca <fonseca@antimatter.localdomain> Mon, 28 Nov 2005 03:49:11 +0100

 cg-object-id |    3 +++
 1 files changed, 3 insertions(+), 0 deletions(-)

diff --git a/cg-object-id b/cg-object-id
index f2cb54e..ec0362a 100755
--- a/cg-object-id
+++ b/cg-object-id
@@ -59,6 +59,9 @@ normalize_id()
 	elif [ -r "$_git/refs/heads/$id" ]; then
 		read id < "$_git/refs/heads/$id"
 
+	elif [ -r "$_git/refs/$id" ]; then
+		read id < "$_git/refs/$id"
+
 	# Short id's must be lower case and at least 4 digits.
 	elif [[ "$id" == [0-9a-f][0-9a-f][0-9a-f][0-9a-f]* ]]; then
 		idpref=${id:0:2}

-- 
Jonas Fonseca

^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2005-11-29 23:57 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-11-29 23:57 [PATCH] cg-object-id: accept $id when .git/refs/$id exists 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).