OT: debugging with git ?

Javier Viguera javier.viguera at digi.com
Thu Nov 26 08:08:19 UTC 2009


walter harms wrote:
> 
> Bernhard Reutner-Fischer schrieb:
>> On Wed, Nov 25, 2009 at 07:32:58PM +0100, walter harms wrote:
>>> Hi list,
>>> this is a bit Off-topic but perhaps more persons are interested.
>>> I try to debug using git. i read about "git bisect"; ok.
>>>
>>> 1. i use "git clone" to have a local repo
>>> 2. then i tried to use bisect
>>>    the problem is that when i try to find the relevant tags
>>>    (the problem occurred between 1.14.4 (good) and 1.15.0 (bad) in ash.c)
>>> i can not see the tags:
>>> 	"git tags -l" shows anything until 1_13_4
>> typo? /tags/s/s//
>> $ git tag -l | egrep "1(4|5)"
>> 1_14_0
>> 1_14_1
>> 1_14_2
>> 1_14_3
>> 1_14_4
>> 1_15_0
>> 1_15_1
>> 1_15_2
>> works for me..
>>
> 
> empty for me, is it possible to check if the repo is complete ?
> 
> re,
>  wh

Hi Walter,

Maybe you have not fetch all the tag references. Try the following:

$ git fetch origin && git fetch -t origin
$ git tag -l 1_14*
1_14_0
1_14_1
1_14_2
1_14_3
1_14_4


-- 
Regards,

Javier Viguera



More information about the busybox mailing list