I need to know if there's a way of see which files were edited in the last 2 days using aptana studio. I've been trying with google but not luck so far.
Does anyone know if this is possible and how to accomplish this?
Thanks.
Are your files under version control ?
Using Git, it's easy to track changes with the following commands :
git diff ...
or
git whatchanged --since '11/10/2012' --until '11/12/2012'