Changes between Version 48 and Version 49 of InstallationGuidelines/VirtualMachine


Ignore:
Timestamp:
01/07/12 22:46:52 (13 years ago)
Author:
Daniel Klischies
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • InstallationGuidelines/VirtualMachine

    v48 v49  
    6666}}}
    6767
    68 If you are working on a specific branch for a particular event (e.g. RHoK), then update to that branch instead, e.g. :
     68If you are working on a specific branch for a particular event (e.g. RHoK), then you can add that branch to your repository:
    6969{{{
    7070cd /home/web2py/applications/eden
    71 git checkout <BRANCH>
     71git remote add BRANCHNAME https://github.com/flavour/BRANCHNAME.git
     72git fetch BRANCHNAME
     73}}}
     74Now you have both, the trunk ("master" branch) and the specific branch ("BRANCHNAME" branch) in your local repo.
     75You can switch between them:
     76{{{
     77git checkout master
     78or
     79git checkout BRANCHNAME
    7280}}}
    7381
    74 If, for some reason, you need a specific revision, do the following with nnnn replaced by the revision you want:
     82If, for some reason, you need a specific revision of "master"/trunk, do the following:
    7583{{{
    7684cd /home/web2py/applications/eden