I like the IDE approach overall. Netbeans has some nice autocomplete
features that really help in writing the code, but then again a simple
editor can work well too.
For the gitignore, just add a pattern of which files you don't want
included either in the root directory or in the specific directory.
Something along the lines of tmp_*
Should be a setting in rad rails for the backups as well.
.tmp_* will ignore the file given as an example above - you would just need to ensure that it doesn't ignore anything you would want to keep as it is a fairly large net
I have **/*/.tmp* as one line in my gitignore but I still get the
files appearing when I do a "git status" so I obviously have got it
wrong.
Maybe I should just put .tmp*
Cheers
George
PS
Thanks for all the advice on ides .... but that wasn't really the
question!