我试图通过命令提示符中的注释搜索历史记录,但当我这样做时
D:\accurev hist -c "My Comment" 甚至是
D:\OneOfMyWorkspaces\accurev hist -c "My Comment" 只是印出来了
**** HIST
****
show the transaction history of elements or an entire depot
----- USAGE
-----
accurev hist [ -t <transaction-range> ] [ -s <stream> ] [ -c <comment>
]
[ -u <principal-name> ] [ -k <transaction-kind> ] [ -f <format(s)> ]
{ -a | <element-list> | [ -Fx ] -l <list-file> | -e <eid> }
[ -p <depot-name> ]
MORE INFORMATION
Type 'accurev help' for a complete list of topics.
AccuRev Inc. http://www.accurev.com support@accurev.com发布于 2013-09-17 12:47:33
您必须指定希望在哪些元素上找到历史记录:
accurev hist -c "My Comment" elem1 elem2如果您只想查看工作区中所有元素的历史记录,请使用:
accurev hist -c "My Comment" -ahttps://stackoverflow.com/questions/18849899
复制相似问题