Changes between Version 61 and Version 62 of InstallationGuidelines/VirtualMachine


Ignore:
Timestamp:
09/18/13 11:54:21 (11 years ago)
Author:
Pat Tressel
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • InstallationGuidelines/VirtualMachine

    v61 v62  
    8282(git requires a name for a branch if you want to preserve commits.)
    8383==== Update web2py ====
    84 On occasion, the latest revision of Web2py is not stable. Check the topic in the #sahana-eden IRC channel on freenode for the latest known-safe revision.
    8584To update Web2py to the latest revision:
    8685{{{
    8786cd /home/web2py
    88 git pull
     87git pull origin master
    8988}}}
    90 To update to a specific revision, do the following with nnnn replaced by the revision you want.
     89On occasion, the latest revision of Web2py is not stable, or is incompatible with the current version of Eden.
     90Check the topic in the #sahana-eden IRC channel on freenode for the latest known-safe revision.
     91The following shows checking out a specific revision as the master branch, by first renaming master,
     92then checking out the desired revision as master, then getting rid of the former master branch.
    9193{{{
    9294cd /home/web2py
    93 git checkout <VERSION>
     95git branch -m master latest_master
     96git checkout -b <recommended_revision> master
     97git branch -D latest_master
    9498}}}
    9599