Subversion: Difference between revisions

From DataFlex Wiki
Jump to navigationJump to search
m (adding link to vdf sig uk subversion presentation)
m (Added to Version Control category)
 
(3 intermediate revisions by 3 users not shown)
Line 21: Line 21:
==See Also==
==See Also==
*[[Version Control]]
*[[Version Control]]
*[http://www.vdfwiki.com/index.php?title=Talk:Subversion Subversion Discussion]


==External Links==  
==External Links==  
*[http://www.vdfsig.co.uk/1seaternews.asp?pageid=986 Presentation from vdf sig UK]
*[http://www.vdfsig.co.uk/1seaternews.asp?pageid=986 Presentation from vdf sig UK]
*[http://www.vdf-guidance.com/ViewPage.asp?Page=SUBVERSION Subversion at vdf-guidance]
*[http://svnbook.red-bean.com/ Documentation]
*[http://svnbook.red-bean.com/ Documentation]
*[http://tortoisesvn.tigris.org/ Tortise Client]
*[http://tortoisesvn.tigris.org/ TortoiseSVN Client]
*[http://svn1clicksetup.tigris.org/ Server]
*[http://svn1clicksetup.tigris.org/ Server]
*[http://tortoisesvn.net/docs/release/TortoiseSVN_en/tsvn-dug-settings.html Tweaking the svn setup]
*[http://tortoisesvn.net/docs/release/TortoiseSVN_en/tsvn-dug-settings.html Tweaking the svn setup]


[[Category: Development Tools]]
[[Category: Development Tools]]
[[Category: Version Control]]

Latest revision as of 12:28, 29 June 2020

Subversion is a popular Open Source Version Control system.

Standard Settings

The standard SVN port is 3690.

A good SVN client for Windows is Tortoise SVN.

Omitting data files

When coding Dataflex with the native database, then we do not want .dat files in version control. (They will take up too much space on the server in different versions). To solve this we need to tweak the svn setup.

The Global Ignore Pattern could be set to:

 *.dat *.k* *.vld *.hdr *.mtd *.dsk *.loc *.prn *.prp *.bak *.pkd *.pbg *.fld *.exe *.dbg *.trc *.doc

Importing a project

If you are importing a project, then remember to have write access to the repository URL you are writing to.

A description of how to do it using the Tortoise client can be found at [1]

See Also

External Links