Skip to content

Commit 4a79c2f

Browse files
authored
Merge pull request #27 from Crystalwarrior/fix-gitignoree
Fix .gitignore ignoring everything that wasn't yet tracked
2 parents 3dd1bc7 + 2ea89bf commit 4a79c2f

File tree

1 file changed

+10
-2
lines changed

1 file changed

+10
-2
lines changed

.gitignore

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,16 +14,24 @@
1414
##########
1515
# Addons files
1616
##########
17+
# Include the add-ons folder
18+
!/addons
19+
# ...but ignore its contents.
20+
addons/*
1721

18-
# the main plugin
22+
# Except for the main plugin
23+
!/addons/dialog_plugin/
1924
!/addons/dialog_plugin/*
2025

21-
# the unit-test plugin that needs an update
26+
# And the unit-test plugin that needs an update
27+
!/addons/WAT/
2228
!/addons/WAT/*
29+
!/tests/
2330
!/tests/*
2431

2532

2633
##########
2734
# Docs
2835
##########
36+
!/docs/
2937
!/docs/*

0 commit comments

Comments
 (0)