How do I find and view a TFS changeset by comment text?

后端 未结 11 1348
一整个雨季
一整个雨季 2020-12-04 05:55

With TFS I need to find a changeset by comment, and/or by developer. Maybe I\'m just blind today, but I don\'t see a simple way in the Source Control Explorer to do this ta

11条回答
  •  孤城傲影
    2020-12-04 06:48

    Alternatively, without having to install power tools, the following command will work if your looking for the search term findme.

    Windows: tf history "$/Team Project/Development" /noprompt /recursive | findstr findme

    Linux: tf history "$/Team Project/Development" /recursive | grep findme

    NB. Please thank this guy if you found this useful.

提交回复
热议问题