Archive for the ‘Web development’ Category

Tips, Tricks, and Applications

Share/Save

Everything that make our life easier is always welcome, that’s why I have created this page. I pretend to collect some of all those “Tips, Tricks, and Applications” that I used to make my work journey ;)

Applications

  • Coda is more than a text editor and is the second most used application in my computer (is difficult to beat browser’s first position)
  • Dockables: With a simple click of your mouse you can lock your screen, backup your time machine, go to sleep mode, and more…

Tips & Tricks

How to add multiple files to SVN

Share/Save

We all know that when you want to add multiple files to the SVN repository you need to specified each one of those files, something like this:

svn add file1 file2 dir3/file3

But what happen when what you need is to add all those files that are not under revision yet?

Well, in that case we have this solutions:

svn add $( svn st | grep "^?" | awk '{print $2}' )

I hope this make a little bit easier your working days.