how to find all the branch type created by one person in clearcase

前端 未结 2 1831
故里飘歌
故里飘歌 2021-01-02 23:24

I created a branch type one month ago , but for some reason delayed to use it until now. But now I just have a vague memory of the branch name but not very sure about it .

相关标签:
2条回答
  • 2021-01-02 23:47

    cleartool lstype -kind brtype | grep username works for me on Linux.

    0 讨论(0)
  • 2021-01-03 00:08

    You can list the brtype of a vob, displaying only what you need with fmt_ccase directives:

    cleartool lstype -kind brtype -invob \myVob
    

    would be enough to do some grep, but for a more compact output:

    cleartool lstype -kind brtype -invob \myVob -fmt "%u %Ad %N\n"
    

    You would only have the username, the date and the name of the brtype, for you to grep.

    Note the %Ad parameter: age in days, to be able to quickly spot brtype created 30 days or so ago.

    0 讨论(0)
提交回复
热议问题