lshistory 命令没有给出子文件夹的日志?
lshistory command does not give the logs of subfolders?
我正在尝试获取具有子文件夹的特定文件夹中文件的更改
例子
文件夹a3
- folder a3
- App.java
- folder com
-folder akshay
- folder jain
- Person.java
然后我在 App.java 和 Person.java 中做了一些更改并将命令应用于 a3
cleartool lshistory -fmt "%n,%c" |findstr "US-100"
但在命令的输出中它只显示 App.java 在特定版本中发生了变化,但不显示 Person.java 因为它在子文件夹中
任何人都有任何想法..也可以获取子文件夹文件的日志。
通过查看 cleartool lshistory
命令,您可以选择 -recurse
:
-r/ecurse
Processes the entire subtree below any directory element encountered.
VOB symbolic links are not traversed during the recursive descent.
Note: This option is mutually exclusive with –last.
所以这可能有更多机会在 Person.java
中获取更改:
cleartool lshistory -r -fmt "%n,%c" |findstr "US-100"
我正在尝试获取具有子文件夹的特定文件夹中文件的更改
例子
文件夹a3
- folder a3
- App.java
- folder com
-folder akshay
- folder jain
- Person.java
然后我在 App.java 和 Person.java 中做了一些更改并将命令应用于 a3
cleartool lshistory -fmt "%n,%c" |findstr "US-100"
但在命令的输出中它只显示 App.java 在特定版本中发生了变化,但不显示 Person.java 因为它在子文件夹中
任何人都有任何想法..也可以获取子文件夹文件的日志。
通过查看 cleartool lshistory
命令,您可以选择 -recurse
:
-r/ecurse
Processes the entire subtree below any directory element encountered.
VOB symbolic links are not traversed during the recursive descent.
Note: This option is mutually exclusive with –last.
所以这可能有更多机会在 Person.java
中获取更改:
cleartool lshistory -r -fmt "%n,%c" |findstr "US-100"