Multiple developers on a Titanium project

I'm making an iPhone app with Appcelerator Titanium and I want to share the source code with a few more programmers. I will use a SCM repository which at some point might be open to the general public.

Now my question is, are there any files which I should not commit to the repository?

Side question - When another programmer downloads this code, it seems to me that (s)he has to have the same directory structure as I do? Any workarounds for this?

Upvotes: 0

Views: 605

Answers (2)

Pedro Brasileiro
Pedro Brasileiro

Reputation: 51

Use the project with two developers. What I did was put in to solve .gitignore the build folder and compile each developer on your machine, generating the same.

Upvotes: 2

anticafe
anticafe

Reputation: 6892

As my experience, at first, I create a new blank project, commit all to SVN. After that, I try to add a few codes, rebuild and see which files is red (means it changes content) except the file I modify. These red files maybe need to removed.

Upvotes: 0

Related Questions