SVN: Difference between revisions

From DataFlex Wiki
Jump to navigationJump to search
(Tidyup, Categorisation)
Line 1: Line 1:
= standard settings  =
'''Subversion''' is a popular [[Open Source]] [[Version Control]] system.
the standard svn port is 3690.


A good svn client for windows is "tortoise svn"
==Standard Settings==
The standard SVN port is 3690.


= omitting data files=
A good SVN client for [[Windows]] is '''Tortoise''' SVN
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.


Tweaking the svn setup : http://tortoisesvn.net/docs/release/TortoiseSVN_en/tsvn-dug-settings.html
==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.
Global ignore pattern could be set to:


The Global Ignore Pattern could be set to:
<pre>
  *.dat *.k* *.vld *.hdr *.mtd *.dsk *.loc *.prn *.prp *.bak *.pkd *.pbg *.fld *.exe *.dbg *.trc *.doc
  *.dat *.k* *.vld *.hdr *.mtd *.dsk *.loc *.prn *.prp *.bak *.pkd *.pbg *.fld *.exe *.dbg *.trc *.doc
</pre>


= Importing a project =
==Importing a project==
If you are importing a project , then remember to have write access to the repository url you are writing to.
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 [http://wsmoak.net/subversion/demo/tsvn-import.html]


Here is a description of how to do it in tortoise svn: http://wsmoak.net/subversion/demo/tsvn-import.html
==See Also==
*[[Version Control]]


==External Links==
*[http://svnbook.red-bean.com/ Documentation]
*[http://tortoisesvn.tigris.org/ Tortise Client]
*[http://svn1clicksetup.tigris.org/ Server]
*[http://tortoisesvn.net/docs/release/TortoiseSVN_en/tsvn-dug-settings.html Tweaking the svn setup]


= Links =
[[Category: Development Tools]]
*docs: http://svnbook.red-bean.com/
*client: http://tortoisesvn.tigris.org/
*server: http://svn1clicksetup.tigris.org/

Revision as of 14:27, 25 November 2007

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