Sublime Text 2 / Windows: launch from command line?

How could one invoke Sublime Text from the command line, so that it starts in the current folder? (I'm using the MINGW32 that comes with Git on Windows)


One solution might be to make an alias to fire up sublime to edit a file:

alias edit='c:/Program\ Files/sublime\ text\ 2/sublime_text.exe -w'

So one can do something like:

cd c:/repos/test/
edit test.html

Sublime should open up, and after save+close it should go back to the command prompt.