Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Android and version control systems, commit gen folder or put on ignore list?

there has already been some discussion about the problems the gen folder causes together with version control systems (SVN, CVS, Git etc). But what is still unclear for me is, should it be commited or put on the ignore list? What is the recommended way?

thanks!

like image 462
clamp Avatar asked Jan 15 '11 10:01

clamp


1 Answers

You shouldn't store /gen folder in any version control system (no matter SVN, CVS, Git or anything else). Contents of the folder are generated automatically so it just makes no sense to keep track of the changes.

like image 84
Konstantin Burov Avatar answered Sep 27 '22 17:09

Konstantin Burov