I'm going to publish a local repository to Git, and want to know what folders and files in App_Data are important to keep solution work state after build for other team.
I except from .gitignore only Umbraco.sdf because I want the same database for every member of team.
But what about other folders of App_Data folder? Are any other important files to keep solution work properly for other team members?
Important App_Data folders for Git
I'm going to publish a local repository to Git, and want to know what folders and files in
App_Data
are important to keep solution work state after build for other team.I except from
.gitignore
onlyUmbraco.sdf
because I want the same database for every member of team.But what about other folders of
App_Data
folder? Are any other important files to keep solution work properly for other team members?Hi Dmitriy
Only "packages" folder is needed for solution, you don't need "cache, courier, Logs, TEMP, Models" folders
Thanks,
Alex
Thanks, Alex. But, may you tell me more about that directory, what it for?
"packages" folder contains xml files with data about created and installed Umbraco packages in the site, it's using by Umbraco
is working on a reply...