Changes between Version 48 and Version 49 of InstallationGuidelines/VirtualMachine
- Timestamp:
- 01/07/12 22:46:52 (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
InstallationGuidelines/VirtualMachine
v48 v49 66 66 }}} 67 67 68 If you are working on a specific branch for a particular event (e.g. RHoK), then update to that branch instead, e.g.:68 If you are working on a specific branch for a particular event (e.g. RHoK), then you can add that branch to your repository: 69 69 {{{ 70 70 cd /home/web2py/applications/eden 71 git checkout <BRANCH> 71 git remote add BRANCHNAME https://github.com/flavour/BRANCHNAME.git 72 git fetch BRANCHNAME 73 }}} 74 Now you have both, the trunk ("master" branch) and the specific branch ("BRANCHNAME" branch) in your local repo. 75 You can switch between them: 76 {{{ 77 git checkout master 78 or 79 git checkout BRANCHNAME 72 80 }}} 73 81 74 If, for some reason, you need a specific revision , do the following with nnnn replaced by the revision you want:82 If, for some reason, you need a specific revision of "master"/trunk, do the following: 75 83 {{{ 76 84 cd /home/web2py/applications/eden