帶有經典ClearCase的主命令是cleartool annotate
(您也有some alternatives)。
這不完全像git blame -L
,因爲你不能限制到文件的一部分。
與長格式,將給予:
cleartool annotate -long msg.c
Annotated result written to "msg.c.ann".
type msg.c.ann
02-Apr-99.10:51:54 ##### Steve ([email protected])\main\rel2_bugfix\1
a test
.
.
.
-------------------------------------------------
-------------------------------------------------
##### 01-Apr-99.16:19:25 scd \main\1 | #include "hello.h"
##### 02-Apr-99.10:51:54 scd \main\rel2_bugfix\1 | /* a test */
##### 01-Apr-99.16:19:25 scd \main\1 |
.
.
.
##### . |char *
##### . | hello_msg() {
這適用於一個文件(或文件列表用空格隔開)
CR是否意味着變更請求?你使用UCM嗎? –
CR表示變更請求,它以明文形式有效分支並由clearquest生成。我認爲UCM不適用於我的情況。 @ Tamir-Gefen –