Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的项目中有一个符号链接 foo 到目录 baz 。baz 和 foo 都在同一个目录中。我将 foo 添加到父目录中的 .cvsignore 中,但 eclipse 仍然想同步 foo 的内容(它也有子目录),我无法提交,因为它们已经在目录 baz 中提交。
所以它看起来像这样:
$ mkdir baz $ ln -s baz foo $ echo "foo" >> .cvsignore
所以我有很多不必要的混乱。如何告诉 eclipse 忽略 foo 的内容?请帮忙。