I set a passphrase when creating a new SSH key on my laptop. But, as I realise now, this is quite a PITA when you are trying to commit(git,svn) to a remote location over SSH many times in an hour.
One way I can think of is, delete my SSH keys and create new. Is there a way to remove the passphrase, while still keeping the same keys?
Answer:
In short, follow these steps:
$ ssh-agent bash
$ ssh-add ~/.ssh/id_rsa
$ ssh username@remote
Voila!