Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 30 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# +-------------------------------------------------------------------------+
# | Copyright (C) 2004-2025 The Cacti Group |
# | Copyright (C) 2004-2026 The Cacti Group |
# | |
# | This program is free software; you can redistribute it and/or |
# | modify it under the terms of the GNU General Public License |
Expand All @@ -18,7 +18,35 @@
# +-------------------------------------------------------------------------+
# | http://www.cacti.net/ |
# +-------------------------------------------------------------------------+
#
# For any folder that ignores all subcontent (<folder>/**), you
# must MANUALLY use 'git add' to include a file as source
# controlled. This is to prevent addition of local specific
# content bleeding into cacti's main sources.
#

# Ignore vim swap files
*.swp
*.rnd

locales/po/*.mo
# Ignore Cacti config
config.php

# Ignore any mac DS_Store files
.DS_Store

# Ignore .well-known folders (certbot)
.well-known

# Ignore .omc directory
.omc/**

# Nested .omc
locales/po/.omc/**

# Ignore language files
locales/po/*.mo

# Ignore visual studio code
.vscode/**

Loading