Difference between revisions of "SVN"

From FOG Project
Jump to: navigation, search
(Got rid of this page because it's duplicate data and inconsistent with the "upgrade to trunk" article.)
 
(One intermediate revision by the same user not shown)
Line 1: Line 1:
= Installation =
+
Please see: [[Upgrade to trunk]]
Before using subversion (checking out code/FOG) you need to install the proper package on your system first.
 
 
 
'''Debian/Ubuntu:'''
 
 
 
sudo yum update && yum install subversion
 
 
 
'''CentOS/Fedora/RHEL:'''
 
 
 
sudo apt-get update && apt-get install subversion
 
 
 
= Checkout =
 
cd ~
 
svn checkout https://svn.code.sf.net/p/freeghost/code/trunk fogproject
 
cd fogproject
 
...
 
You'll find detailed instructions on how to install FOG [[Installation#Installer_options|here]].
 
 
 
= GUI Subversion clients =
 
Coming from a Windows background, some people may prefer using a GUI Subversion client, rather than the standard, basic command-line client. If you feel comfortable with a file system browser/explorer integrated Subversion client, then [http://tortoisesvn.tigris.org/ TortoiseSVN] is the best choice - it is extremely popular. <br />
 
 
 
Another tool that is simple to configure and easy to understand, but is a traditional one-window application like Microsoft &trade; Visual Source Safe &trade; is [http://rapidsvn.tigris.org/ RapidSVN]. [http://en.wikipedia.org/wiki/RapidSVN It is cross-platform] and has a simple interface, in one place unlike TortoiseSVN.
 

Latest revision as of 17:15, 3 April 2016

Please see: Upgrade to trunk