ClearCase 查找查询:"created_since" 是查找创建日期还是签入日期?
ClearCase find query: does "created_since" look for creation or check in date?
在 ClearCase 中,我可以使用以下命令搜索更改的文件
cleartool find . -version "created_since(DATE)" -print
但是,我不确定这个 "created_since" 是否查找文件的签入日期或创建日期。假设我在星期一创建了一个文件,直到星期五才将它添加到源代码管理中。现在我使用上述命令在星期四查找所有文件 "created_since"。它会找到我的文件吗?
根据check-in日期查找文件,也就是创建版本的日期
这取决于ClearCase Explorer option (also valid for a ClearTeam 8.x Explorer) "Preserve file modification time
"
By default, the last modified time of a ClearCase element is the time it was last checked in.
To preserve the last modified time during a checkin operation or when adding resources to source control, click the Preserve modification time
when checking in files and adding new files to source control preference.
如果选择该选项,则版本日期(由 cleartool find created_since
查询使用)将是文件的最后修改日期。
在 ClearCase 中,我可以使用以下命令搜索更改的文件
cleartool find . -version "created_since(DATE)" -print
但是,我不确定这个 "created_since" 是否查找文件的签入日期或创建日期。假设我在星期一创建了一个文件,直到星期五才将它添加到源代码管理中。现在我使用上述命令在星期四查找所有文件 "created_since"。它会找到我的文件吗?
根据check-in日期查找文件,也就是创建版本的日期
这取决于ClearCase Explorer option (also valid for a ClearTeam 8.x Explorer) "Preserve file modification time
"
By default, the last modified time of a ClearCase element is the time it was last checked in.
To preserve the last modified time during a checkin operation or when adding resources to source control, click thePreserve modification time
when checking in files and adding new files to source control preference.
如果选择该选项,则版本日期(由 cleartool find created_since
查询使用)将是文件的最后修改日期。