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.
我在eclipse中有java项目。并在svn中同步。
在导航器视图中,我看不到同步类文件。如何添加所有 *.class 文件以上传到 svn:
除非您有特定的理由希望将编译后的代码存储在版本控制中,否则我不会费心尝试添加.class文件。Eclipse可能允许您以某种方式添加它们,但如果这样做,可能会故意使其变得困难。不过,没有理由不能从命令行手动添加它们。
.class
相反,我会确保将您的构建脚本(ant、maven 或其他)签入存储库,并以确定性和可重复的方式构建您的类文件。例如,确保指定编译器的版本,以便您的编译器的当前版本成为此时使用此源代码重复构建的要求。