Intel XDK + SVN (Subversion)

2

I need to control the version of my code in Intel XDK, I know about SVN, how to use it in intel, or have another way to do with another type of program.

I need a team to work on the project and update for everyone working on the newest version.

    
asked by anonymous 10.08.2015 / 19:44

1 answer

4

With SVN it is possible to control version of code in text format such as Java, JavaScript, C, etc., and even binary file versions, such as compiled code.

Obviously the advantages are more visible, from the developer's point of view, to control the code version.

To learn more about svn from a read on this article .

So if your project is a code, it's possible you can control it with SVN, you can use a personal server , or a SourceForge for example.

You can also use other versioning tools like # , if it's an OpenSource project, with > GitHub , for proprietary projects, BitBucket , free for up to 5 developers.

    
10.08.2015 / 20:03