You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@subversion.apache.org by jcollinx <jc...@hotmail.com> on 2009/01/07 18:26:49 UTC

How to get remote status (on the server) for updated files?

Hello,

svn status gives the status of your local working copy.

svn status -u gives the status of your local working copy and alert you
(with a *) that some file of your local working copy were updated on the
server by an other user.

I wonder if there is a way (with the command line tool) to know if the file
was Added, modified or deleted on the server by this other user?

Thanks in advance for your response...:-)
-- 
View this message in context: http://www.nabble.com/How-to-get-remote-status-%28on-the-server%29-for-updated-files--tp21337347p21337347.html
Sent from the Subversion Users mailing list archive at Nabble.com.

------------------------------------------------------
http://subversion.tigris.org/ds/viewMessage.do?dsForumId=1065&dsMessageId=1010214

To unsubscribe from this discussion, e-mail: [users-unsubscribe@subversion.tigris.org].

Re: How to get remote status (on the server) for updated files?

Posted by Andy Levy <an...@gmail.com>.
On Wed, Jan 7, 2009 at 13:26, jcollinx <jc...@hotmail.com> wrote:
> Hello,
>
> svn status gives the status of your local working copy.
>
> svn status -u gives the status of your local working copy and alert you
> (with a *) that some file of your local working copy were updated on the
> server by an other user.
>
> I wonder if there is a way (with the command line tool) to know if the file
> was Added, modified or deleted on the server by this other user?

svn log <URL> -v

You can give the URL to the individual file(s) or the parent
directory. You can also use the --limit option or a revision range to
restrict how many log entries are retrieved if you don't want to sift
through the entire history.