-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcommit.txt
More file actions
17 lines (14 loc) · 986 Bytes
/
commit.txt
File metadata and controls
17 lines (14 loc) · 986 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
Add repository ignore rules for Visual Studio and WDK-generated artifacts
Introduce a project-level .gitignore tailored to this kernel-driver workspace
so that Visual Studio state, MSBuild intermediates, and driver build outputs do
not pollute version control.
This change ignores IDE metadata such as .vs and per-user solution files, common
build directories including Debug, Release, x64, ARM64, and Generated Files,
the transient UserDriv.* intermediate folder created by local builds, and the
compiler/linker byproducts typically produced during native and driver
development such as obj, pdb, idb, tlog, sys, and cat files.
The goal is to keep the repository focused on source, project configuration, and
intentional assets while preventing machine-specific or reproducible build
artifacts from showing up in git status. This should make local iteration
cleaner, reduce accidental commits of generated files, and improve collaboration
across different development environments.