Difference between revisions of "Upgrade to Revision"

From FOG Project
Jump to: navigation, search
(Created page with "At this time there is only one method to accomplish this and it is SVN. ==SVN== *Install as seen in '''SVN''' <pre>svn co https://svn.code.sf.net/p/freeghost/code/trunk /...")
 
m
 
Line 1: Line 1:
At this time there is only one method to accomplish this and it is SVN.
+
At this time there is only one easy method to accomplish this and it is SVN.
 +
Git provides a method to upgrade to a specific revision, but it's not as user friendly.
  
 
==SVN==
 
==SVN==

Latest revision as of 01:34, 6 August 2015

At this time there is only one easy method to accomplish this and it is SVN. Git provides a method to upgrade to a specific revision, but it's not as user friendly.

SVN

  • Install as seen in SVN
svn co https://svn.code.sf.net/p/freeghost/code/trunk /some/local/folder
  • Then navigate to the folder you specified and run:
sudo /some/local/folder/bin/./installfog.sh

Update to Revision

cd  /some/local/folder/
svn up -r <revision>
cd bin
./installfog.sh
  • NOTE: You must run svn up -r <revision> in the "/some/local/folder/" and not in ".../fog/bin" nor in ".../fog"
  • WARNING: DO NOT DOWN GRADE! If you do, the mysql database will be messed up and a possible re-installation will be your only hope.