CVS: Difference between revisions

From FreeMind
Jump to navigationJump to search
No edit summary
 
(10 intermediate revisions by 4 users not shown)
Line 1: Line 1:
<p style={{ProjectNewsStyle}}>
<br>
<br>
<font color="red">'''OBSOLETE!''': FreeMind's code has moved to [[GIT]].
<br>
<br>
<br>
</font></p>
'''CVS''' -- Concurrent Version System -- is a place where history of FreeMind source code is stored. It is also the place where the latest unreleased versions of FreeMind source code can be found.
'''CVS''' -- Concurrent Version System -- is a place where history of FreeMind source code is stored. It is also the place where the latest unreleased versions of FreeMind source code can be found.


Line 6: Line 15:
* [http://freemind.cvs.sourceforge.net/freemind/ Browse CVS repository]
* [http://freemind.cvs.sourceforge.net/freemind/ Browse CVS repository]
* [http://freemind.cvs.sourceforge.net/freemind/freemind/ Browse CVS repository - FreeMind proper]
* [http://freemind.cvs.sourceforge.net/freemind/freemind/ Browse CVS repository - FreeMind proper]
* [http://freemind.cvs.sourceforge.net/freemind/freemind/freemind/modes/mindmapmode/ Browse CVS repository - Mind map mode]


==Using CVS with Eclipse==
==Using CVS with Eclipse==


To find out how to use CVS in ''Eclipse'' development environment for Java, see [http://freemind.sourceforge.net/docs/Using%20CVS%20via%20Eclipse/index.html Using CVS from within Eclipse] guide by Bob Alexander.
To find out how to use CVS in ''Eclipse'' development environment for Java, see [http://freemind.sourceforge.net/docs/Using%20CVS%20via%20Eclipse/index.html Using CVS from within Eclipse] guide by Bob Alexander and [[CVS_Eclipse]] .
 
Some parts follow.
 
Connection:
* Host: freemind.cvs.sourceforge.net
* Repository path: /cvsroot/freemind
* User: anonymous
* Password: empty
* Connection type: pserver
* Use default port: (*)


==Using CVS in Windows with TortoiseCVS==
==Using CVS in Windows with TortoiseCVS==
Line 18: Line 38:


* The latest integration branch: ''fm_060405_integration''.
* The latest integration branch: ''fm_060405_integration''.
* The tag of the last release: ''FM-0-8-0''.
* The tag of the last stable release: ''FM-0-8-0''.
* The tag of the last beta: ''fm_0_9_0_beta12''.
* The tag of the last unstable release: ''fm_0_9_0_rc1''. (Last update: 11.2.2009. This piece of information gets out of date easily.)


To find all the tags available, see the offer in the ''Sticky Tag'' field at the top part of the screen when [http://freemind.cvs.sourceforge.net/freemind/freemind/ browsing CVS repository].
To find all the tags available, see the offer in the ''Sticky Tag'' field at the top part of the screen when [http://freemind.cvs.sourceforge.net/freemind/freemind/ browsing CVS repository].
Line 29: Line 49:
* Changing the names of folders and files in CVS is difficult.
* Changing the names of folders and files in CVS is difficult.
* Removing files completely is difficult.
* Removing files completely is difficult.
==See also==
* [[Building]]
==External links==
* [http://www.codinghorror.com/blog/archives/000968.html Software Branching and Parallel Universes]


[[Category:Development]]
[[Category:Development]]

Latest revision as of 22:08, 19 March 2011



OBSOLETE!: FreeMind's code has moved to GIT.


CVS -- Concurrent Version System -- is a place where history of FreeMind source code is stored. It is also the place where the latest unreleased versions of FreeMind source code can be found.

Links

Using CVS with Eclipse

To find out how to use CVS in Eclipse development environment for Java, see Using CVS from within Eclipse guide by Bob Alexander and CVS_Eclipse .

Some parts follow.

Connection:

  • Host: freemind.cvs.sourceforge.net
  • Repository path: /cvsroot/freemind
  • User: anonymous
  • Password: empty
  • Connection type: pserver
  • Use default port: (*)

Using CVS in Windows with TortoiseCVS

In Windows, you can work with CVS using TortoiseCVSDownload (6- MB). TortoiseCVS adds new menu items to the Explorer interface, presenting CVS as a folder in the file system, which you can browse like you would any other folder.

The latest CVS branch

  • The latest integration branch: fm_060405_integration.
  • The tag of the last stable release: FM-0-8-0.
  • The tag of the last unstable release: fm_0_9_0_rc1. (Last update: 11.2.2009. This piece of information gets out of date easily.)

To find all the tags available, see the offer in the Sticky Tag field at the top part of the screen when browsing CVS repository.

Gotchas when checking files into CVS

Please keep in mind the following when checking in new files into CVS.

  • Changing the names of folders and files in CVS is difficult.
  • Removing files completely is difficult.

See also

External links