Changes between Version 47 and Version 48 of InstallationGuidelines/VirtualMachine


Ignore:
Timestamp:
01/07/12 13:49:16 (13 years ago)
Author:
Daniel Klischies
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • InstallationGuidelines/VirtualMachine

    v47 v48  
    6363{{{
    6464cd /home/web2py/applications/eden
    65 bzr pull
     65git pull
    6666}}}
    6767
     
    6969{{{
    7070cd /home/web2py/applications/eden
    71 bzr pull lp:~flavour/sahana-eden/cert
     71git checkout <BRANCH>
    7272}}}
    7373
     
    7575{{{
    7676cd /home/web2py/applications/eden
    77 bzr pull -r nnnn
     77git checkout <VERSION>
    7878}}}
    7979==== Update web2py ====
     
    8282{{{
    8383cd /home/web2py
    84 bzr update
     84git pull
    8585}}}
    8686To update to a specific revision, do the following with nnnn replaced by the revision you want.
    8787{{{
    8888cd /home/web2py
    89 bzr update -r nnnn
     89git checkout <VERSION>
    9090}}}
    9191
     
    130130
    131131Several 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
    133133 * Firefox with Firebug for examining what is sent to the browser, and viewing HTTP messages sent to and from the browser.
    134134 * Eclipse with !PyDev for editing and debugging Python code.