首页 \ 问答 \ 文件夹不在TFS 2008中下载 - 映射问题(Folder Not Downloading In TFS 2008 - Problem With Mapping)

文件夹不在TFS 2008中下载 - 映射问题(Folder Not Downloading In TFS 2008 - Problem With Mapping)

我在TFS 2008中有一个已成功映射到本地文件夹的项目,但是,我的解决方案中的一个项目在Visual Studio的源代码管理资源管理器中标记为“未下载”,尽管本地文件夹包含所有适当的文件。

我尝试删除我的整个本地文件夹,并从源代码管理资源管理器执行“获取特定版本”,但它仍然表明,该文件夹尚未下载时,它已相当明显。

当我右键单击源代码管理资源管理器中的文件夹时,它可以让我选择映射到本地文件夹,但是当我选择正确的文件夹时,它说该文件夹已经映射到另一个服务器文件夹。

有谁知道如何解决这一问题? 有没有办法找出本地文件夹映射到哪个服务器文件夹? 每次我执行“获取最新版本”或“获取特定版本”时,正确的文件将下载到我的本地文件夹,但TFS仍然认为该文件夹未映射......帮助!


I have a project in TFS 2008 that has been successfully mapped to a local folder, however, one of the projects within my solution is marked as "Not Downloaded" within Source Control Explorer in Visual Studio, despite the local folder containing all of the appropriate files.

I've tried deleting my entire local folder and performing a "Get Specific Version" from Source Control Explorer, but it still states that this folder has not been downloaded when it quite clearly has been.

When I right-click on the folder in Source Control Explorer it gives me the option to map to a local folder, but when I select the correct folder it says that the folder is already mapped to another server folder.

Does anyone know how to fix this? Is there a way of finding out which server folder a local folder is mapped to? Each time I perform a "Get Latest Version" or "Get Specific Version" the correct files are downloaded to my local folder, yet TFS still thinks the folder isn't mapped... help!


原文:https://stackoverflow.com/questions/4593186
更新时间:2023-01-09 11:01

最满意答案

你需要一个反斜杠( \ )来继续一行,而不是一个正斜杠( / )。


You need a backslash (\) to continue a line, not a forward slash (/).

相关问答

更多
  • 一个可能的技巧可能是让一个宏将宏名称作为参数 #define DO_ENUM(Mac) \ Mac(foo) \ Mac(bar) 然后 #define DECLARE_ENUM(X) X, enum fun_names { Nothing, DO_ENUM(DECLARE_ENUM) }; #undef DECLARE_ENUM 并声明功能: #define DECLARE_FUN(X) void myfun_##X(void); DO_ENUM(DECLARE_FUN) #undef ...
  • 当您使用C ++时,可以避免使用可能存在许多问题的变量参数列表的缺陷: 不检查参数的数量 不检查参数类型 为了使它更像C ++,做类似的事情: #define EVENT_INFO(args) EventLogStream (__FILE__, __LINE__, __PRETTY_FUNCTION__) << args 并调用它(警告:这里的所有代码都是伪代码,可能在语法上不正确,但你应该得到基本的想法): EVENT_INFO ("The answer to " << the_question << ...
  • 以下调用: log(log_params, "testing %d", 4) 使用三个实际参数调用类似函数的宏log 。 在将参数“传递”到宏之前,它们的替换不会被解决。 换句话说,即使log_params本身包含逗号,在类似函数的宏调用解析期间也不会考虑此逗号。 因此,您实际上将参数传递为: file ---> __FILE__, __LINE__ line ---> "testing %d" message ---> 4 替换会忽略前两个参数,最终您获得: _snprintf_s(nul ...
  • 你需要一个反斜杠( \ )来继续一行,而不是一个正斜杠( / )。 You need a backslash (\) to continue a line, not a forward slash (/).
  • 宏是预处理器,在编译代码之前它们将被它们的关联语句替换。 所以,你没有机会在运行时拥有宏名称。 但是,您可以在编译时生成字符串名称: #define APINAME abc #define PRINTAPI(x) std::cout << #x << std::endl; int main() { PRINTAPI(APINAME); } 产量 APINAME 在宏中,运算符#将输入参数设置为字符串文字(字符串化) Macros are pre-processors and they will ...
  • 有时,位的位置代表一些位操作,如您的情况: #define DSF_OVER (1<<0) is 1 #define DSF_DISPLAY (1<<1) is 2 #define DSF_CALLFLOW (1<<2) is 4 (This is not 3) 如果您稍后要添加新项目,则可以执行此操作 #define DSF_OVER 1 #define DSF_DISPLAY 2 #define DSF_CALLFLOW 4 #defin ...
  • 编译为C ++时,C代码应该可以正常工作。 不要使用BYTE类型,只需使用OpenGL定义的类型GLbyte ,这是API实际使用的类型。 它在gl.h定义: typedef signed char GLbyte; 将上述代码快速(未经测试!)翻译成C ++将是这样的: GLuint texture; unsigned width = 256, height = 256; unsigned buffer_size = width * height * 3; GLbyte * data; std::ifst ...
  • 我没有测试过这个,但应该工作: #define SUBSTFOO3( a, b1, c1 ) foo1(a, b1, c1) #define SUBSTFOO5( a, b1, c1, b2, c2 ) foo2(a, b1, c1, b2, c2) /* ad nauseam */ #define foo( N, ... ) SUBSTFOO ## N ( __VA_ARGS__ ) 这可能也有效: #define SUBSTFOO3 foo1 /* no arguments needed */ #d ...
  • 在可能的情况下(几乎总是)首选模板而不是宏: #include #include struct Signed {}; struct Unsigned{}; namespace detail { template struct make_int ; template<> struct make_int { using type = std::int64_ ...

相关文章

更多

最新问答

更多
  • h2元素推动其他h2和div。(h2 element pushing other h2 and div down. two divs, two headers, and they're wrapped within a parent div)
  • 创建一个功能(Create a function)
  • 我投了份简历,是电脑编程方面的学徒,面试时说要培训三个月,前面
  • PDO语句不显示获取的结果(PDOstatement not displaying fetched results)
  • Qt冻结循环的原因?(Qt freezing cause of the loop?)
  • TableView重复youtube-api结果(TableView Repeating youtube-api result)
  • 如何使用自由职业者帐户登录我的php网站?(How can I login into my php website using freelancer account? [closed])
  • SQL Server 2014版本支持的最大数据库数(Maximum number of databases supported by SQL Server 2014 editions)
  • 我如何获得DynamicJasper 3.1.2(或更高版本)的Maven仓库?(How do I get the maven repository for DynamicJasper 3.1.2 (or higher)?)
  • 以编程方式创建UITableView(Creating a UITableView Programmatically)
  • 如何打破按钮上的生命周期循环(How to break do-while loop on button)
  • C#使用EF访问MVC上的部分类的自定义属性(C# access custom attributes of a partial class on MVC with EF)
  • 如何获得facebook app的publish_stream权限?(How to get publish_stream permissions for facebook app?)
  • 如何防止调用冗余函数的postgres视图(how to prevent postgres views calling redundant functions)
  • Sql Server在欧洲获取当前日期时间(Sql Server get current date time in Europe)
  • 设置kotlin扩展名(Setting a kotlin extension)
  • 如何并排放置两个元件?(How to position two elements side by side?)
  • 如何在vim中启用python3?(How to enable python3 in vim?)
  • 在MySQL和/或多列中使用多个表用于Rails应用程序(Using multiple tables in MySQL and/or multiple columns for a Rails application)
  • 如何隐藏谷歌地图上的登录按钮?(How to hide the Sign in button from Google maps?)
  • Mysql左连接旋转90°表(Mysql Left join rotate 90° table)
  • dedecms如何安装?
  • 在哪儿学计算机最好?
  • 学php哪个的书 最好,本人菜鸟
  • 触摸时不要突出显示表格视图行(Do not highlight table view row when touched)
  • 如何覆盖错误堆栈getter(How to override Error stack getter)
  • 带有ImageMagick和许多图像的GIF动画(GIF animation with ImageMagick and many images)
  • USSD INTERFACE - > java web应用程序通信(USSD INTERFACE -> java web app communication)
  • 电脑高中毕业学习去哪里培训
  • 正则表达式验证SMTP响应(Regex to validate SMTP Responses)