Difference between revisions of "Download using Subversion"
From ERPXE Wiki
(10 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
+ | NOTE: Currently subversion let you download the tar.gz from sourceforge servers | ||
+ | to local directory. please do not download directly to your TFTP server and follow [[Installation]] Instructions after download | ||
+ | |||
To access a Subversion repository, configure your Subversion client as follows: | To access a Subversion repository, configure your Subversion client as follows: | ||
Line 17: | Line 20: | ||
svn update | svn update | ||
+ | == IGNORE THIS == | ||
+ | DO NOT CONTINUE READING! IT'S NOT READY YET! | ||
+ | [https://sourceforge.net/apps/trac/sourceforge/wiki/Subversion%20client%20instructions] | ||
− | + | # The following assumes /svnroot is a safe location for the | |
− | + | # SVN repository to be stored, modify accordingly should you need | |
− | + | # an alternate location. | |
− | # The following assumes /svnroot is a safe location for the | + | $ mkdir ~/svnroot |
− | # SVN repository to be stored, modify accordingly should you need | + | |
− | # an alternate location. | + | # Initialize the repository |
− | $ mkdir ~/svnroot | + | $ svnadmin create /svnroot |
− | + | ||
− | # Initialize the repository | + | # Go to the directory that contains the content you want to put |
− | $ svnadmin create /svnroot | + | # into a SVN module, in this case, the ~/source directory |
− | + | $ cd ~/source | |
− | # Go to the directory that contains the content you want to put | + | |
− | # into a SVN module, in this case, the ~/source directory | + | # Perform a SVN import |
− | $ cd ~/source | + | $ svn import file:///svnroot -m "initial import" |
− | + | Adding src | |
− | # Perform a SVN import | + | Adding src/foo |
− | $ svn import file:///svnroot -m "initial import" | + | Adding src/bar |
− | Adding src | + | Adding ~svnroot |
− | Adding src/foo | + | Committed revision 1. |
− | Adding src/bar | + | |
− | Adding ~svnroot | + | # Create a working copy from which to make changes and check them |
− | Committed revision 1. | + | # back into the repository, etc. |
− | + | $ mkdir ~/working_copy | |
− | # Create a working copy from which to make changes and check them | + | $ cd ~/working_copy |
− | # back into the repository, etc. | + | $ svn co file:///svnroot |
− | $ mkdir ~/working_copy | + | A svnroot/src |
− | $ cd ~/working_copy | + | A svnroot/src/foo |
− | $ svn co file:///svnroot | + | A svnroot/src/bar |
− | A svnroot/src | + | Checked out revision 1. |
− | A svnroot/src/foo | ||
− | A svnroot/src/bar | ||
− | Checked out revision 1. |
Latest revision as of 06:26, 11 February 2012
NOTE: Currently subversion let you download the tar.gz from sourceforge servers to local directory. please do not download directly to your TFTP server and follow Installation Instructions after download
To access a Subversion repository, configure your Subversion client as follows:
Hostname: erpxe.svn.sourceforge.net Port: 443 Protocol: HTTPS Repository Path: /svnroot/erpxe For clients that use a URL string: https://erpxe.svn.sourceforge.net/svnroot/erpxe
No username and password will be requested when performing read operations. read access is provided to everyone, without the need to authenticate.
Read access includes these commands:
Checkout:
svn co https://erpxe.svn.sourceforge.net/svnroot/erpxe/trunk
Update:
svn update
IGNORE THIS
DO NOT CONTINUE READING! IT'S NOT READY YET!
# The following assumes /svnroot is a safe location for the # SVN repository to be stored, modify accordingly should you need # an alternate location. $ mkdir ~/svnroot # Initialize the repository $ svnadmin create /svnroot # Go to the directory that contains the content you want to put # into a SVN module, in this case, the ~/source directory $ cd ~/source # Perform a SVN import $ svn import file:///svnroot -m "initial import" Adding src Adding src/foo Adding src/bar Adding ~svnroot Committed revision 1. # Create a working copy from which to make changes and check them # back into the repository, etc. $ mkdir ~/working_copy $ cd ~/working_copy $ svn co file:///svnroot A svnroot/src A svnroot/src/foo A svnroot/src/bar Checked out revision 1.