Skip to content

Commit cf483c1

Browse files
authored
Update .gitignore file to prevent future oopsies (#311)
1 parent 798c057 commit cf483c1

1 file changed

Lines changed: 30 additions & 2 deletions

File tree

.gitignore

Lines changed: 30 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# +-------------------------------------------------------------------------+
2-
# | Copyright (C) 2004-2025 The Cacti Group |
2+
# | Copyright (C) 2004-2026 The Cacti Group |
33
# | |
44
# | This program is free software; you can redistribute it and/or |
55
# | modify it under the terms of the GNU General Public License |
@@ -18,7 +18,35 @@
1818
# +-------------------------------------------------------------------------+
1919
# | http://www.cacti.net/ |
2020
# +-------------------------------------------------------------------------+
21+
#
22+
# For any folder that ignores all subcontent (<folder>/**), you
23+
# must MANUALLY use 'git add' to include a file as source
24+
# controlled. This is to prevent addition of local specific
25+
# content bleeding into cacti's main sources.
26+
#
2127

28+
# Ignore vim swap files
29+
*.swp
30+
*.rnd
2231

23-
locales/po/*.mo
32+
# Ignore Cacti config
2433
config.php
34+
35+
# Ignore any mac DS_Store files
36+
.DS_Store
37+
38+
# Ignore .well-known folders (certbot)
39+
.well-known
40+
41+
# Ignore .omc directory
42+
.omc/**
43+
44+
# Nested .omc
45+
locales/po/.omc/**
46+
47+
# Ignore language files
48+
locales/po/*.mo
49+
50+
# Ignore visual studio code
51+
.vscode/**
52+

0 commit comments

Comments
 (0)