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 So, when i make a git status, i've this # On branch v3.10.04 # Untracked files: # (use "git add <file>..." to include in what will be committed) # # MYMETA.json # MYMETA.yml # Makefile # blib/ # koha-tmpl/intranet-tmpl/prog/fr-FR/ # koha-tmpl/opac-tmpl/prog/fr-FR/ # pm_to_blib nothing added to commit but untracked files present (use "git add" to track) But, after installation, i'm on 3.11 (so, the next version). How can i solve this problem? Best regards samuel
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
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
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
Hie, You mean your version is 3.11 in "About Koha" page ? This version is the version of your database. Regards, Le 29/04/2013 13:29, Samuel Desseaux a écrit :
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
So, when i make a git status, i've this
# On branch v3.10.04 # Untracked files: # (use "git add <file>..." to include in what will be committed) # # MYMETA.json # MYMETA.yml # Makefile # blib/ # koha-tmpl/intranet-tmpl/prog/fr-FR/ # koha-tmpl/opac-tmpl/prog/fr-FR/ # pm_to_blib nothing added to commit but untracked files present (use "git add" to track)
But, after installation, i'm on 3.11 (so, the next version).
How can i solve this problem?
Best regards
samuel
_______________________________________________ Koha-devel mailing list Koha-devel@lists.koha-community.org http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-devel website : http://www.koha-community.org/ git : http://git.koha-community.org/ bugs : http://bugs.koha-community.org/
-- Fridolyn SOMERS Biblibre - Pôle support fridolyn.somers@biblibre.com
participants (3)
-
Fridolyn SOMERS -
Mason James -
Samuel Desseaux