forked from bdewey/static-libgit2
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
137 lines (115 loc) · 3.85 KB
/
.gitignore
File metadata and controls
137 lines (115 loc) · 3.85 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
# ===============================================================
# @file: .gitignore
# @filepath: .gitignore
# @version: 5.0
# @updated: 2026-04-09 06:30:00 PM CDT
# @author: Greg Paskal
# @company: MissionWares
#
# @description:
# Files and directories to ignore in Git repositories.
# This configuration file specifies intentionally untracked files that Git
# should ignore. Includes system files, build artifacts, test reports, and
# private/sensitive files that should not be committed to version control.
#
# @sections:
# 01 - Mac System Files
# 02 - Android / Android Studio
# 03 - Swift / Xcode / iOS
# 04 - Maven Build Output
# 05 - Gradle Build Output
# 06 - Node / NPM
# 07 - Electron
# 08 - PlatformIO
# 09 - FTP / SFTP
# 10 - Allure Report Artifacts
# 11 - Private / Sensitive Files
#
# @dependencies:
# - Git version control system
# - Android Studio / Gradle
# - Maven build system
# - Allure reporting framework
#
# @tags: git, version-control, ignore-patterns, mAi™
#
# @changeLog:
# Date Author Version Description
# ---------- -------------- ------- --------------------------
# 2024-07-22 G. Paskal 1.0 Initial version
# 2025-05-19 G. Paskal 2.0 Added Private Files
# 2026-01-10 G. Paskal 2.1 Added mAi™ header standard
# 2026-01-21 G. Paskal 3.0 Added Swift installer files
# 2026-01-30 G. Paskal 4.0 Added FTP and Node
# 2026-01-31 G. Paskal 4.1 Added .sftpignore
# 2026-02-18 G. Paskal 4.2 Added __MACOSX zip artifact
# 2026-02-26 G. Paskal 4.3 Added .pio for PlatformIO
# 2026-03-07 G. Paskal 4.4 Added Electron Files
# 2026-04-09 G. Paskal 5.0 Added Android / Android Studio
# ===============================================================
# ---------------------------------------------------------------
# 01 - MAC SYSTEM FILES
# ---------------------------------------------------------------
.DS_Store
__MACOSX/
# ---------------------------------------------------------------
# 02 - ANDROID / ANDROID STUDIO
# ---------------------------------------------------------------
*.iml
.idea/
local.properties
*.apk
*.aab
*.jks
*.keystore
captures/
.externalNativeBuild/
.cxx/
# ---------------------------------------------------------------
# 03 - SWIFT / XCODE / iOS
# ---------------------------------------------------------------
install*
dependencies
.swiftpm
# ---------------------------------------------------------------
# 04 - MAVEN BUILD OUTPUT
# ---------------------------------------------------------------
target
# ---------------------------------------------------------------
# 05 - GRADLE BUILD OUTPUT
# ---------------------------------------------------------------
.gradle/
gradle-app.setting
!gradle-wrapper.jar
.gradletasknamecache
# ---------------------------------------------------------------
# 06 - NODE / NPM
# ---------------------------------------------------------------
node_modules/
# ---------------------------------------------------------------
# 07 - ELECTRON
# ---------------------------------------------------------------
dist/
out/
staging/
# ---------------------------------------------------------------
# 08 - PLATFORMIO
# ---------------------------------------------------------------
.pio
# ---------------------------------------------------------------
# 09 - FTP / SFTP
# ---------------------------------------------------------------
sftp.json
.sftpignore
.ftpconfig
# ---------------------------------------------------------------
# 10 - ALLURE REPORT ARTIFACTS
# ---------------------------------------------------------------
.allure
allure-report
allure-results
# ---------------------------------------------------------------
# 11 - PRIVATE / SENSITIVE FILES
# ---------------------------------------------------------------
.private
.private/*.json