Changes between Version 47 and Version 48 of InstallationGuidelines/VirtualMachine
- Timestamp:
- 01/07/12 13:49:16 (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
InstallationGuidelines/VirtualMachine
v47 v48 63 63 {{{ 64 64 cd /home/web2py/applications/eden 65 bzrpull65 git pull 66 66 }}} 67 67 … … 69 69 {{{ 70 70 cd /home/web2py/applications/eden 71 bzr pull lp:~flavour/sahana-eden/cert 71 git checkout <BRANCH> 72 72 }}} 73 73 … … 75 75 {{{ 76 76 cd /home/web2py/applications/eden 77 bzr pull -r nnnn 77 git checkout <VERSION> 78 78 }}} 79 79 ==== Update web2py ==== … … 82 82 {{{ 83 83 cd /home/web2py 84 bzr update 84 git pull 85 85 }}} 86 86 To update to a specific revision, do the following with nnnn replaced by the revision you want. 87 87 {{{ 88 88 cd /home/web2py 89 bzr update -r nnnn 89 git checkout <VERSION> 90 90 }}} 91 91 … … 130 130 131 131 Several useful tools have been installed: 132 * Bazaar (bzr) -- revision control system used on Launchpad, where Sahana eden sources are hosted.132 * git - Version control system. Hosting is provided by GitHub 133 133 * Firefox with Firebug for examining what is sent to the browser, and viewing HTTP messages sent to and from the browser. 134 134 * Eclipse with !PyDev for editing and debugging Python code.