tags:

views:

41

answers:

2

I am inside a directory in svn, I want to tell something another developer about a file there over chat.

Is there an easy command to obtain the full URL to that file - let's say something he can send as a parameter to svn export or something like that.

+5  A: 
svn info «your_file» | grep URL
vartec
A: 

Like "svn info" [file]

zodeus