Changes between Version 61 and Version 62 of InstallationGuidelines/VirtualMachine
- Timestamp:
- 09/18/13 11:54:21 (11 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
InstallationGuidelines/VirtualMachine
v61 v62 82 82 (git requires a name for a branch if you want to preserve commits.) 83 83 ==== 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.85 84 To update Web2py to the latest revision: 86 85 {{{ 87 86 cd /home/web2py 88 git pull 87 git pull origin master 89 88 }}} 90 To update to a specific revision, do the following with nnnn replaced by the revision you want. 89 On occasion, the latest revision of Web2py is not stable, or is incompatible with the current version of Eden. 90 Check the topic in the #sahana-eden IRC channel on freenode for the latest known-safe revision. 91 The following shows checking out a specific revision as the master branch, by first renaming master, 92 then checking out the desired revision as master, then getting rid of the former master branch. 91 93 {{{ 92 94 cd /home/web2py 93 git checkout <VERSION> 95 git branch -m master latest_master 96 git checkout -b <recommended_revision> master 97 git branch -D latest_master 94 98 }}} 95 99