ClearCase SCM Adapter support for annotate

后端 未结 2 1540
小蘑菇
小蘑菇 2021-01-16 11:16

I wanted to annotate some code with version history. This is easy in Eclipse when using SVN, but the Rational ClearCase SCM Adapter plugin doesn\'t appear to support it.

相关标签:
2条回答
  • 2021-01-16 11:33

    In Visual Studio you can set it up to run the cleartool command line option (Using the Tools->External Tools...).
    It seems like eclipse has a similar feature ("FAQ How do I add my own external tools?")

    Command: \installationpath\cleartool.exe
    Arguments: annotate -nheader $(ItemPath)
    Initial directory: $(ItemDir)
    

    After it creates the file you can open in your favorite editor.

    I only mention it because it might be an option as it is free.
    It is easier then using the command line excluding when my project files have the wrong capitalization which causes cleartool to not work and I find myself either update the .vcproj or using the command line.

    0 讨论(0)
  • 2021-01-16 11:39

    The cleartool annotate is the only form of annotation (or "blame") for ClearCase, and isn't available through the official plugins (ClearCase SCM adapter, or the CCRC plugin)

    That is why you will fond some non-free option like:

    • annotate add-on
    • Visual Annotate (could have a free edition soon, according to his author Tamir Gefen)
    • FishEye & Crucible, although that stopped 4th April 2012, with FishEye 2.8.
    0 讨论(0)
提交回复
热议问题