-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy path.gitignore
More file actions
85 lines (74 loc) · 3.11 KB
/
.gitignore
File metadata and controls
85 lines (74 loc) · 3.11 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
# Rust specific files
/target/ # Rust build output directory
**/*.rs.bk # Rust backup files
*.crate # Compiled crate files
# Build artifacts
*.d # Dependency files generated by build tools
*.o # Object files
*.so # Shared object files
*.a # Static library files
*.dll # Windows dynamic link libraries
*.exe # Executable files (Windows)
/*.exe # Executable in the root directory
*.out # Linux/macOS executables
*.app # macOS application bundles
# Debugging and profiling
*.pdb # Windows debug symbols
*.profraw # Profiling data files
*.profdata # Profiling result files
*.dSYM/ # macOS debug symbols
*.log # Logs (general debugging or build logs)
*.trace # Debug trace files
# Operating System specific files
.DS_Store # macOS Finder metadata
Thumbs.db # Windows thumbnail cache
desktop.ini # Windows desktop configuration
*.swp # Swap files (Vim, etc.)
*.swo # Vim temporary files
~$* # Temporary files created by some text editors
# IDEs and Editors
.idea/ # IntelliJ IDEA
*.iml # IntelliJ module files
.vscode/ # Visual Studio Code
*.code-workspace # VS Code workspace files
*.sublime-project # Sublime Text project files
*.sublime-workspace # Sublime Text workspace files
# Temporary Files
*.tmp # Temporary files
*.bak # Backup files
*.old # Backup files (alternative)
*.orig # Merge conflict backups
*.rej # Patch rejects
/tmp/ # Temporary directories
/temp/ # Alternative temp directories
# Archives
*.tar
*.gz
*.zip
*.rar
*.7z
*.bz2
# Testing and Coverage
*.test # Test artifacts
*.snap # Snapshot files
coverage/ # Coverage reports
*.lcov # LCov coverage files
# Dependency directories
node_modules/ # Node.js dependencies (if applicable)
vendor/ # Vendor dependencies (e.g., Go, PHP)
# Environment and sensitive files
*.env # Environment variables
.env.* # Other .env variants
*.key # Private keys
*.pem # Certificates
*.crt # Certificates
*.pfx # PKCS12 certificate files
# System specific caches
.cache/ # System or application cache
.lock/ # Lock files
# Build tools and configs
Makefile # If autogenerated
CMakeFiles/ # CMake build artifacts
build/ # General build output folder
cmake-build-debug/ # Debug builds from CMake
cmake-build-release/ # Release builds from CMake