You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Umbraco.gitignore 1.6KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. ## Ignore Umbraco files/folders generated for each instance
  2. ##
  3. ## Get latest from https://github.com/github/gitignore/blob/main/Umbraco.gitignore
  4. # Note: VisualStudio gitignore rules may also be relevant
  5. # Umbraco
  6. # Ignore unimportant folders generated by Umbraco
  7. **/App_Data/Logs/
  8. **/App_Data/[Pp]review/
  9. **/App_Data/TEMP/
  10. **/App_Data/NuGetBackup/
  11. # Ignore Umbraco content cache file
  12. **/App_Data/umbraco.config
  13. ## this [Uu]mbraco/ folder should be created by cmd like `Install-Package UmbracoCms -Version 8.5.3`
  14. ## you can find your Umbraco version in your Web.config. (i.e. <add key="Umbraco.Core.ConfigurationStatus" value="8.5.3" />)
  15. ## Uncomment this line if you think it fits the way you work on your project.
  16. ## **/[Uu]mbraco/
  17. ## The [Mm]edia/ folder contains content. Content may vary by environment and should therefore not be added to source control.
  18. ## Uncomment this line if you think it fits the way you work on your project.
  19. ## **/[Mm]edia/
  20. # Don't ignore Umbraco packages (VisualStudio.gitignore mistakes this for a NuGet packages folder)
  21. # Make sure to include details from VisualStudio.gitignore BEFORE this
  22. !**/App_Data/[Pp]ackages/*
  23. !**/[Uu]mbraco/[Dd]eveloper/[Pp]ackages/*
  24. !**/[Uu]mbraco/[Vv]iews/[Pp]ackages/*
  25. # ImageProcessor DiskCache
  26. **/App_Data/cache/
  27. # Ignore the Models Builder models out of date flag
  28. **/ood.flag
  29. # NEW for version 9 .Net 5 (Core)
  30. #ignore umbraco backoffice assest from wwwroot
  31. **/wwwroot/umbraco/
  32. # SQLite files
  33. *.sqlite.db*
  34. #ignore umbraco data/views/settings
  35. **/umbraco/
  36. #include default location for modelsbuilder output
  37. !**/umbraco/models
  38. #include default location for packages
  39. !**/umbraco/Data/packages