Jetbrains Idea连接TFS时配置的坑

#Team Explorer Everywhere
https://www.microsoft.com/en-us/search/result.aspx?q=team+explorer+everywhere&Preview=1
以前使用Eclipse,连接TFS使用这个工具很不错

#jetbrains自带的TFS管理
jetbrain内置的TFS连接比较弱,没有Explorer的功能,查看整个项目的签入情况
最坑的问题是如果操作不慎,还连不上。
问题描述:
新安装的centos,如果没有修改主机名,使用idea可以连接TFS
如果安装时修改了主机名,那就连接不上TFS
使用如果自己修改了主机名/etc/hostname文件,也不行
经过抓包和系列的分析,最终确认,是/etc/hostname和/etc/hosts必须配置一致
如hostname是demo,那在hosts中必须有127.0.0.1 设置为demo的配置

#/etc/hostname和/etc/hosts的区别
http://blog.csdn.net/dba_waterbin/article/details/7986363

#Visual Studio Team Services Plugin
TFS新的版本【2015和以后版本】使用Team Services了,可以查看这里,这个支持git了
http://java.visualstudio.com/Docs/tools/intro
http://java.visualstudio.com/Docs/tools/intelliJ
TF command line tool 可以从这下载 https://github.com/Microsoft/team-explorer-everywhere/releases,要求TFS是2015及以上版本

原文地址:https://www.cnblogs.com/2018/p/6898468.html