views:

376

answers:

2

Does anyone know how to tell if a file is currently locked by another user in svn using the Zend Studio IDE?

Cheers.

A: 

You need not to tell anyone, that this filed is locked

Once your team update their working copy (local copy) they will automatically see that file with lock icon on it.

Ish Kumar
A: 

You can add the svn:needs-lock property on files that really require locking. That way the files will be read-only on disk. The way to make them writable is locking the file. When you lock a file that has been locked by another user, you'll be notified of that.

There's usually no need to know what files are locked, until you want to take a lock on the same file

Sander Rijken