Andi Setiyadi
Andi Setiyadi

Reputation: 307

Proper gitignore files for MobileFirst project

I am developing MobileFirst project targeting for iPad and Android environment. Do we need to commit everything into git repo or are there certain folders/files that are candidates to be included in .gitignore?

Thank you.

Upvotes: 1

Views: 126

Answers (1)

Idan Adar
Idan Adar

Reputation: 44516

Have you read the Integrating with source control systems user documentation topic? It lists which folders can be checked-in and which should not.

Additionally, there is the followng un-official .gitignore template that you can use: https://github.com/andrewferrier/mfp-gitignore

You do not mention which environment you are targeting, but for example for iOS you should check-in everything except for the following:

native\www
native\CordovaLib
native\Frameworks\sqlchiper

The above three are auto re-generated on build-time in MFP Studio/CLI.

Upvotes: 1

Related Questions