forked from samuelcaldas/Bruteforce-Bootloader-Unlocker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitignore
74 lines (62 loc) · 1.68 KB
/
.gitignore
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
# .gitignore for Bruteforce Bootloader Unlocker Project
# ----------------------------
# Visual Studio Code Settings
# ----------------------------
# Ignore VSCode workspace and settings folders
.vscode/
.vs/
# If you want to share specific settings, you can remove the lines above
# and selectively include necessary configuration files.
# ----------------------------
# Device-Specific Data Files
# ----------------------------
# Ignore device-specific configuration and data files
*.dat
# ----------------------------
# Logs and Temporary Files
# ----------------------------
# Ignore log files
*.log
# Ignore temporary files created by editors
*~
# ----------------------------
# OS-Specific Files
# ----------------------------
# macOS
.DS_Store
# Windows
Thumbs.db
Desktop.ini
# ----------------------------
# PowerShell Specific Files
# ----------------------------
# Ignore PowerShell XML help files
*.ps1.xml
# ----------------------------
# Backup and Swap Files
# ----------------------------
# Common backup file extensions
*.bak
*.tmp
*.swp
# ----------------------------
# Other Temporary and Hidden Files
# ----------------------------
# Ignore hidden files except .gitignore and .gitattributes
.*
!.gitignore
!.gitattributes
# ----------------------------
# Optional: Exclude Executables (if applicable)
# ----------------------------
# If you generate executable versions of your scripts, you might want to ignore them
# For example:
# *.exe
# *.out
# *.bin
# ----------------------------
# Optional: Ignore Node Modules (if using Node.js tools)
# ----------------------------
# If your project uses Node.js for any tooling, uncomment the following lines
# node_modules/
# npm-debug.log*