后台搜索 TFS 源代码管理中的更改
SourceGear Vault 的客户端应用程序能够在后台搜索更改。这非常有用,因为我可以随时快速查看我的团队成员已签入的更改以及我需要了解的最新更改。这对于预览可能需要的任何合并也很有帮助。每天,它可以帮助我了解代码库的哪些部分流失最多。
有没有办法通过 Team Foundation Server 获得相同的功能,无论是使用本机功能还是插件?我知道有比较功能,但需要很长时间才能发挥作用。除非它可以像 Vault 那样定期刷新自己,但我还没有找到办法做到这一点。 Visual Studio 2010 有什么新功能吗?
SourceGear Vault's client app has the ability to background search for changes. This is very useful because at any time I can take a quick peek and see what changes my team members have checked in and that I need to get latest on. This is also helpful for previewing any merges that might be necessary. And on a day to day basis, it helps me get a sense of what parts of the codebase are seeing the most churn.
Is there a way to get this same functionality with Team Foundation Server, either with native features or a plugin? I know there is a Compare feature, but it takes way too long to be useful. Unless it could periodically refresh itself like Vault does, but I haven't found a way to do that. Anything new with Visual Studio 2010?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
虽然这不能直接回答您的问题,但我在 TFS 上设置了警报,以便每当有人签入内容时我都会收到一封电子邮件。这让我可以看到正在发生的流失情况,并让我了解是否有人在他们指定的地方玩游戏。不应该。
While this doesn't directly answer your question, I set up alerts on TFS so that I get sent an email anytime someone checks something in. This lets me see the churn that's happening and lets me see if someone is playing in a place that they shouldn't be.
编写一些 C# 代码来执行您想要的任何操作并将其作为事件处理程序附加到 TFS 是很容易的。
搜索(例如“TFS 事件处理程序”)将获得相当多的点击
例如此线程 以及 CodePlex 上的这个 事件处理程序 dll
It's easy to write a bit of C# code to do whatever you want and attach it to TFS as an event handler.
A search (e.g. "TFS event handler") will get quite a few hits
e.g. this thread on MSDN and this event handler dll on CodePlex