- pipe svn output with | mate
You can get a great view of the changes you’ve made in a file under version control (with svn) if you pipe the command through to TextMate:
svn diff web/myfile.php | mate
You can also do this with svn cat:
svn cat -r## filename | mate
This will open up the resulting diff output in a new document in TextMate, all color coded and ready to go.




