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@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@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