Works just fine on a fresh clone. To clarify the process, here's the commands that one would use:
git clone git://git.koha.org/pub/scm/koha.git kohaclone cd kohaclone git checkout -b my_stable_3.0.4 v3.00.04 Nicole is right. When you use git, you get the WHOLE repo. You do not just get just whatever version you want to run, you get EVERY current version. So the checkout step is where you actually decide what version of the repo to expose. In this case, you checkout based on the v3.00.04 tag. If you look at kohaversion.pl, you'll get different results before and after the checkout step above (whatever is in HEAD vs. 3.00.04.019). When git tells you it is up to date, that doesn't mean you have exactly the kohaversion you want exposed, because that depends on what branch you are on. If you checked out from v3.00.03 instead, you'd have a different kohaversion. And so on. You can get errors in this process if you previously tried to directly edit a remote branch. Avoid that. --joe 2009/10/21 Nicole Engard <neng...@gmail.com> > Sounds like you're pulling HEAD instead of 3.04 - and you just need to > switch which branch you're using to the 3.x branch. > > Nicole > > > On Wed, Oct 21, 2009 at 5:38 PM, Chadwick, John, DCA < > john.chadw...@state.nm.us> wrote: > >> That's just it. I am not getting any errors. All the feedback is that I >> am up to date. The version still comes up as 3.00.01.061. >> >> >> -----Original Message----- >> From: Chris Cormack [mailto:ch...@bigballofwax.co.nz] >> Sent: Wednesday, October 21, 2009 3:28 PM >> To: Chadwick, John, DCA >> Cc: koha-devel@lists.koha.org >> Subject: Re: [Koha-devel] [Koha] Koha-3.0.4 Stable release >> >> 2009/10/22 Chadwick, John, DCA <john.chadw...@state.nm.us>: >> > I have tried everything. Doing a rebase returns a fatal error. >> > >> Its working for me >> >> What is the actual error you are getting, and what branch are you on? >> >> I suspect your git clone is a little messed up >> >> Chris >> >> ______________________________________________________________________ >> This inbound email has been scanned for malicious software and >> transmitted safely to you using Webroot Email Security. >> ______________________________________________________________________ >> >> >> Confidentiality Notice: This e-mail, including all attachments is for the >> sole use of the intended recipient(s) and may contain confidential and >> privileged information. Any unauthorized review, use, disclosure or >> distribution is prohibited unless specifically provided under the New Mexico >> Inspection of Public Records Act. If you are not the intended recipient, >> please contact the sender and destroy all copies of this message. -- This >> email has been scanned by the Sybari - Antigen Email System. >> >> >> >> ______________________________________________________________________ >> Confidentiality Notice: This e-mail,including all attachments is for the >> sole use of the intended recipient(s) and may contain confidential and >> privileged information. Any unauthorized review,use,disclosure or >> distribution is prohibited unless specifically provided under the New Mexico >> Inspection of Public Records Act. If you are not the intended recipient, >> please contact the sender and destroy all copies of this message. >> >> This email has been scanned using Webroot Email Security. >> ______________________________________________________________________ >> _______________________________________________ >> Koha-devel mailing list >> Koha-devel@lists.koha.org >> http://lists.koha.org/mailman/listinfo/koha-devel >> > > > _______________________________________________ > Koha-devel mailing list > Koha-devel@lists.koha.org > http://lists.koha.org/mailman/listinfo/koha-devel >
_______________________________________________ Koha-devel mailing list Koha-devel@lists.koha.org http://lists.koha.org/mailman/listinfo/koha-devel