Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Flex & SVN - what to ignore?

I want to version control my Flex application with SVN. What should I include and what should I ignore?

like image 346
chchrist Avatar asked Nov 10 '10 13:11

chchrist


2 Answers

I'm only ignoring the .settings directory.

You should view the source of the project files (.actionScriptProperties, .flexProperties, .project) and decide whether you or your team need their settings on a clean checkout or not.

If you put these files under version control, then you should avoid workstation specific directories in your settings (Flex Server Settings) and substitute them with path variables.

This for example is the content of my .flexProperties file:

<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<flexProperties 
    enableServiceManager="false" flexServerFeatures="4" flexServerType="2" 
    serverContextRoot="/myProject" 
    serverRoot="${HTTP_DOCS}/myProject/" 
    serverRootURL="http://localhost/myProject" 
    toolCompile="true" useServerFlexSDK="false" version="1"/>
like image 101
splash Avatar answered Oct 01 '22 03:10

splash


Agree. bin-debug and bin-release are the first ones to ignore.

like image 23
Paras Avatar answered Oct 01 '22 04:10

Paras