Reputation: 12416
we're working on a project that uses Spring Roo and there is one quite annoying detail that comes into play when team woks on the same code (in brances).
We work in STS (it opens Roo shell automatically) and the problem is that every time Roo shell gets opened/closed it logs time into "log.roo", so if there is more than one dev. that work on the same codebase in branches we end up with merging these logs from time to time.
We could add "log.roo" to ignore in our SCM but having log about what was actually done using Roo is rather handy thing.
Is there a way to tweak Roo (or STS) so it won't log this junk (open/close time records) that we end up merging?
Upvotes: 1
Views: 255
Reputation: 2842
Why don't you maintain a copy of the log.roo file? This is the approach that I use, a file named script.roo that allows me to edit it if necessary (for removing or adding comments) and it also allows me to ignore log.roo in the SCM
Upvotes: 1