Subversion (SVN)

Versione: 
1.7.21
Data rilascio: 
Lunedì, 27 Dicembre, 2004

Licenza:

Interfaccia:

Authors/Port authors:

Subversion - abbreviato spesso in SVN - per OS/2, basato sulla libreria C GNU più recente.

Per l'editor jEdit è disponibile un plugin Subversion (ver. 1.7) in Java, che per funzionare non richiede l'installazione locale di svn.

Questo software è distribuito con due modalità:
  • come pacchetto compresso, da scaricare e installare manualmente; se ci sono prerequisiti da soddisfare, andranno anch'essi scaricati e installati manualmente;
  • come pacchetto RPM, installabile tramite il gestore pacchetti rpm preferito, che provvederà a scaricare e installare sia il software che gli eventuali prerequisiti.
Scegli la modalità di installazione che preferisci, tenendo conto del fatto che non tutte le versioni del software sono disponibili per entrambe le modalità.

Installazione con rpm

Questo programma si può installare usando il gestore pacchetti rpm. Vedi sotto per la stringa di installazione. I prerequisiti richiesti sono gestiti dal gestore pacchetti e, se necessario, scaricati e installati automaticamente.

subversion-1.6.16.2-1 (05/10/2011)
Repository: Netlabs stable

Installazione manuale

Il programma è distribuito come pacchetto ZIP: scaricare in una cartella temporanea e scompattare nella cartella di destinazione. Vedi sotto per il(i) link di download.

Qui di seguito trovi i link di download per l'installazione manuale del software:

Subversion (SVN) v. 1.7.21 (10/8/2015, Paul Smedley (Smedles)) Readme/What's new
Subversion 1.7.21 for OS/2 & eComStation The goal of the Subversion project is to build a version control system that is a compelling replacement for CVS in the open source community. The software is released under an Apache/BSD-style open source license. Requires libc066.dll - which is available from ftp://ftp.netlabs.org/pub/gcc/libc-0.6.6-csd6.zip This has had minimal testing, but I have used it successfully to check out code from several subversion repositories. Changes in 1.7.21 - 2015-08-10 release - Updated to v1.7.21 All feedback is appreciated to paul@smedley.id.au, bugs should be entered in the bugtracker at http://mantis.smedley.id.au If you like this software and want to support continued ports, please consider donating via PayPal via the link at http://os2ports.smedley.id.au, or via the Mensys online store at http://www.mensys.net/os2ports Cheers, Paul Smedley Adelaide, Australia 10th August, 2015
 www.dropbox.com/s/e9qtmmp30h9mw5s/subversion-1.7.21-os2-20150810.zip?dl=0  local copy
Subversion (SVN) v. 1.1.2 (27/12/2004, Brian Havard) Readme/What's new
Subversion, a version control system. ===================================== $LastChangedDate: 2004-12-19 03:45:15 +1000 (Sun, 19 Dec 2004) $ Contents: I. A FEW POINTERS II. DOCUMENTATION III. PARTICIPATING IN THE SUBVERSION COMMUNITY IV. QUICKSTART GUIDE V. CONVERTING FROM CVS I. A FEW POINTERS For an overview of the Subversion project, visit http://subversion.tigris.org/ Once you have a Subversion client you can get the latest version of the code with the command: $ svn co http://svn.collab.net/repos/svn/trunk subversion II. DOCUMENTATION The main documentation is the Subversion Book, written in DocBook XML, which lives in the doc/ tree. If you wish to build the documentation from source, read doc/book/README. Otherwise, an on-line version of the book can be found at http://svnbook.red-bean.com. See COPYING for copyright information. See HACKING for development information. See INSTALL for installation information. III. PARTICIPATING IN THE SUBVERSION COMMUNITY First, read the HACKING file! It describes Subversion coding and log message standards, as well as how to join discussion lists. Talk on IRC with developers: irc.freenode.net, channel #svn. Read the FAQ: http://subversion.tigris.org/project_faq.html IV. QUICKSTART GUIDE Please note that this section is just a quick example for people who want to see Subversion run immediately. It's not an excuse to ignore the book! The Subversion client has an abstract interface for accessing a repository. Three "Repository Access" (RA) implementations currently exist as libraries: libsvn_ra_dav: accesses a networked repository using WebDAV. libsvn_ra_local: accesses a local repository using Berkeley DB. libsvn_ra_svn: accesses a remote repository using a custom protocol. You can see which methods are available to your 'svn' client by running 'svn --version'. The following example assumes that ra_local is available to your client. (If you don't see ra_local, it probably means that Berkeley DB wasn't found when compiling your client binary.) 1. svnadmin create /path/to/repos - this creates a new directory, 'repos'. Make sure that /path/to/repos/ is on local disk, NOT a network share. - make SURE you have complete recursive read/write access to the newly created 'repos' directory. - understand that the repository is mainly a collection of BerkeleyDB files; you won't actually see your versioned data if you peek in there. 2. svn import /tmp/project file:///path/to/repos -m "Initial import" - /tmp/project is a tree of data you've pre-arranged. If you can, use this layout, as it will help you later on: /tmp/project/branches/ /tmp/project/tags/ /tmp/project/trunk/ foo.c bar.c baz.c etc. 3. svn checkout file:///path/to/repos/trunk project - this creates a 'project' directory which is a working copy of the /trunk directory in the repository. 4. Try using the repository: - edit a file in your working copy. - run 'svn diff' to see the changes. - run 'svn commit' to commit the changes. - run 'svn up' to bring your working copy up-to-date. Be sure to read chapters 2 and 3, they're a critical introduction to the svn commandline client. 5. Get a real server process running (either apache or svnserve) so that your repository can be made available over a network. Read chapters 5 and 6 to learn about how to administer a repository and how to set up a server process. *** NEWBIES BEWARE: The absolute most common stumbling block for newbies is problems with permissions and ownership on the repository. Any process that opens the repository must have complete read/write access to it. This goes for any tool ('svnadmin', 'svnlook') or any server process (apache, svnserve), or your own svn client, if it's accessing via file:///. Look at the last section in chapter 6 to understand how to tweak repository ownership and permissions for multiple users and processes. V. CONVERTING FROM CVS If you're a CVS user trying to move your CVS history over to Subversion, then be sure to visit the 'cvs2svn' project: http://cvs2svn.tigris.org You can get the latest released version of the cvs2svn converter from the project downloads area: http://cvs2svn.tigris.org/servlets/ProjectDocumentList?folderID=2976 Please note that the cvs2svn project is a *separate* project from Subversion. If you have problems with cvs2svn or are confused, please email the cvs2svn project's mailing lists, not the Subversion lists. Finally, be sure to see Appendix A in the Subversion book. It contains a very quick overview of the major differences between CVS and Subversion.
 silk.apana.org.au/pub/svn/svn-os2-1.1.2.zip  local copy
Scheda aggiornata l'ultima volta il: 16/10/2022 - 21:31

Aggiungi un commento