[Gambas-user] .gitignore for a Gambas project

2014-04-23 Thread Patrik Karlsson
Hi, What should a .gitignore look like? The one I am using contains: .lock *~ *.gambas .settings /Patrik -- Start Your Social Network Today - Download eXo Platform Build your Enterprise Intranet with eXo Platform

Re: [Gambas-user] .gitignore for a Gambas project

2014-04-23 Thread Tobias Boege
On Wed, 23 Apr 2014, Patrik Karlsson wrote: Hi, What should a .gitignore look like? The one I am using contains: .lock *~ *.gambas .settings You can also safely ignore .action .directory .icon.png .startup as they can (and will) be regenerated by the IDE. You should ignore .gambas

Re: [Gambas-user] .gitignore for a Gambas project

2014-04-23 Thread Tobias Boege
On Wed, 23 Apr 2014, Tobias Boege wrote: On Wed, 23 Apr 2014, Patrik Karlsson wrote: Hi, What should a .gitignore look like? The one I am using contains: .lock *~ *.gambas .settings You can also safely ignore .action .directory .icon.png .startup Hum, of course,

Re: [Gambas-user] .gitignore for a Gambas project

2014-04-23 Thread Benoît Minisini
Le 23/04/2014 16:17, Patrik Karlsson a écrit : Hi, What should a .gitignore look like? The one I am using contains: .lock *~ *.gambas .settings /Patrik Look at the Project.CleanUp() method in the IDE source code. That method removes all files that must not be controlled by subversion