Name

proplist

Synopsis

svn 
 proplist propname [path ...]
svn proplist propname --revprop -r rev [URL]

List all properties on files, directories, or revisions. The first form lists versioned properties in your working copy, while the second lists unversioned remote properties on a repository revision.

Alternate Names:

plist, pl

Changes:

Working copy; repository only if operating on a URL

Accesses Repository:

Only if operating on a URL

Options

--config-dir dir

--recursive (-R)

--no-auth-cache

--revisionrev, -rrev

--non-interactive

--revprop

--password pass

--username user

--quiet (-q)

--verbose (-v)

Examples

You can use svn proplist to see the properties on an item in your working copy:

    $ svn proplist foo.c
    Properties on 'foo.c':
      svn:mime-type
      svn:keywords
      owner

But with the --verbose flag, svn proplist is extremely handy as it also shows you the values for the properties:

    $ svn proplist --verbose foo.c
    Properties on 'foo.c':
      svn:mime-type : text/plain
      svn:keywords : Author Date Rev
      owner : sue

Get Unix in a Nutshell, 4th Edition now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.