[Koha-devel] question about git install

Mason James mtj at kohaaloha.com
Tue Apr 30 02:42:44 CEST 2013


On 2013-04-30, at 12:10 AM, Samuel Desseaux wrote:

> Le 29/04/2013 14:02, Mason James a écrit :
>> On 2013-04-29, at 11:29 PM, Samuel Desseaux wrote:
>> 
>>> Hi!
>>> 
>>> I've made a git install of koha.
>>> 
>>> I've followed these instructions
>>> 
>>> git clonehttp://git.koha-community.org/koha.git  kohaclone
>>> cd kohaclone
>>> git checkout 3.10.04
>>> 
>>> 
>>> How can i solve this problem?
>>> 
>> 
>> just reset your repo to the 'v3.10.04' tag/commit...
>>  $ git reset v3.10.04
>> 
>> then, verify...
>>  $ git log --oneline|head -1
>>  ffcf600 3.10.4 release notes
>> 
>> 
> 
> here is the  results
> 
> 14:07 root at koha:/home/koha/kohaclone2# git reset v3.10.04
> warning: refname 'v3.10.04' is ambiguous.
> warning: refname 'v3.10.04' is ambiguous.
> 14:07 root at koha:/home/koha/kohaclone2# git log --oneline|head -1
> ffcf600 3.10.4 release notes
> 

hmm, it looks like that worked ok for you

but, i think your "refname 'v3.10.04' is ambiguous" warnings are because you have a tag *and* a branch called 'v3.10.04'

afaik, git doesn't like that :/


i remove the 'v' from my branch-names to stop those warnings, on my repo

so…

$ git branch   3.10.04
$ git checkout 3.10.04
$ git reset    v3.10.04





More information about the Koha-devel mailing list