TFS query (in Visual Studio) to get all check-ins

后端 未结 6 1917
执念已碎
执念已碎 2021-02-01 04:10

I\'m trying to get a list of all check-ins (limited / ordered by date) via the TFS query editor in Visual Studio Team Explorer.

I can make a query that lists all bugs, s

6条回答
  •  离开以前
    2021-02-01 04:36

    USE TfsVersionControl    
    
    select distinct top 100 c.CreationDate,c.Comment,u.DisplayName, v.Fullpath
    from tbl_changeset as c
     join tbl_identity as u on u.Identityid = c.OwnerId
     join dbo.tbl_Version as v on v.Versionfrom = c.ChangeSetId 
    Order by c.CreationDate desc
    

    Here is sql report I made to view recent changes.

提交回复
热议问题