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 - To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.htmlReceived on Wed Nov 30 10:58:30 2005
This archive was generated by hypermail 2.1.8 : 2005-11-30 10:58:36 EST