diff options
author | mbukejlovic <m.bukejlovic@vegaitsourcing.rs> | 2018-01-04 10:26:19 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-01-04 10:26:19 +0100 |
commit | 94f0d69b6fcced8982eb50ecec7cae5523fee095 (patch) | |
tree | d8cdca82470222f9748bc3288e31476342fd8041 /Umbraco.gitignore | |
parent | 1301de5e5e3c23815f5b8c3891825a8e2421f2c9 (diff) | |
download | gitignore-94f0d69b6fcced8982eb50ecec7cae5523fee095.tar.gz gitignore-94f0d69b6fcced8982eb50ecec7cae5523fee095.zip |
Fixed the unignore of folder 'packages'
Considering the VisualStudio gitignore file contains a line "**/[Pp]ackages/*", these 2 lines from Umbraco gitignore never get applied properly to the desired files, even though Umbraco lines were added after the VS lines. I guess the VS's line is more specific, so it gets a priority of some sort.
Diffstat (limited to 'Umbraco.gitignore')
-rw-r--r-- | Umbraco.gitignore | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Umbraco.gitignore b/Umbraco.gitignore index c0392626..10fc2b4d 100644 --- a/Umbraco.gitignore +++ b/Umbraco.gitignore @@ -16,8 +16,8 @@ # Don't ignore Umbraco packages (VisualStudio.gitignore mistakes this for a NuGet packages folder) # Make sure to include details from VisualStudio.gitignore BEFORE this -!**/App_Data/[Pp]ackages/ -!**/[Uu]mbraco/[Dd]eveloper/[Pp]ackages +!**/App_Data/[Pp]ackages/* +!**/[Uu]mbraco/[Dd]eveloper/[Pp]ackages/* # ImageProcessor DiskCache **/App_Data/cache/ |