Skip to content

Commit 94f0d69

Browse files
authored
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.
1 parent 1301de5 commit 94f0d69

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Umbraco.gitignore

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@
1616

1717
# Don't ignore Umbraco packages (VisualStudio.gitignore mistakes this for a NuGet packages folder)
1818
# Make sure to include details from VisualStudio.gitignore BEFORE this
19-
!**/App_Data/[Pp]ackages/
20-
!**/[Uu]mbraco/[Dd]eveloper/[Pp]ackages
19+
!**/App_Data/[Pp]ackages/*
20+
!**/[Uu]mbraco/[Dd]eveloper/[Pp]ackages/*
2121

2222
# ImageProcessor DiskCache
2323
**/App_Data/cache/

0 commit comments

Comments
 (0)