Page 1 of 1

Which Codelite files need to be saved to Subversion

Posted: Wed Mar 07, 2018 7:01 am
by coder99
After starting to port some Windows projects to Linux & using Codelite as my IDE, I want to make sure I understand which Codelite specific files need/ought to be saved to SVN and which will be recreated

Re: Which Codelite files need to be saved to Subversion

Posted: Wed Mar 07, 2018 4:07 pm
by eranif
In addition to your source code, you will need these file:

.workspace (the workspace file)
*.project (the project files)

The rest are auto generated and should not be added to svn/git etc

Re: Which Codelite files need to be saved to Subversion

Posted: Wed Mar 07, 2018 8:46 pm
by coder99
Thank you.