1

I would like to ask about SVN checkout with respect to Android. If I commit the project and in that project I do not commit the /bin what will be the pros and cons related to this. What is the best practice, commit /bin also or not commit /bin.

Second question is if I commit the /bin along with the project and get conflict on update it what should the preferable should I resolve "using their`s" or resolve "using mine".

4

1 回答 1

1

/bin是一个自动生成的文件夹。每当您导入/运行/调试/构建项目时,都会重新创建它。在将项目提交到远程存储库时,建议不要使用它提交自动生成的文件夹(例如,/bin、/gen)。因为一旦您在编辑器中导入/运行/调试/构建项目,它们就会自动创建。

我希望这能回答这个问题。

于 2013-04-18T06:21:13.193 回答