名称

svn propget — 打印一个属性的值。

概要

svn propget PROPNAME [TARGET[@REV]...]
svn propget PROPNAME --revprop -r REV [URL]

描述

Print the value of a property on files, directories, or revisions. The first form prints the versioned property of an item or items in your working copy, and the second prints unversioned remote properties on a repository revision. See 第 2 节 “属性” for more information on properties.

别名

pget, pg

改变

工作副本;对URL操作时是版本库

访问版本库

只有在对URl操作时会

选项

--changelist ARG
--depth ARG
--recursive (-R)
--revision (-r) REV
--revprop
--strict
--verbose (-v)
--xml

例子

检查工作副本的一个文件的一个属性:

$ svn propget svn:keywords foo.c
Author
Date
Rev

对于修订版本属性相同:

$ svn propget svn:log --revprop -r 20 
Began journal.

Lastly, you can get svn propget output in XML format with the --xml option:

$ svn propget --xml svn:ignore .
<?xml version="1.0"?>
<properties>
<target
   path="">
<property
   name="svn:ignore">*.o
</property>
</target>
</properties>