Compare commits

..

2 Commits

3 changed files with 39 additions and 0 deletions

8
.gitattributes vendored Normal file
View File

@@ -0,0 +1,8 @@
# Normalize line endings
* text=auto
# PowerShell scripts: treat as text and ensure LF in repo
*.ps1 text eol=lf
*.psm1 text eol=lf
*.psd1 text eol=lf

31
.gitignore vendored Normal file
View File

@@ -0,0 +1,31 @@
# --- OS / Editor ---
.DS_Store
Thumbs.db
# VS Code / JetBrains
.vscode/
.idea/
*.swp
# --- PowerShell / temp ---
*.tmp
*.temp
*.bak
# --- Logs & runtime output ---
*.log
Logs/
logs/
# --- WinSCP / script output (falls du mal Output umleitest) ---
WinSCP.log
# --- Windows build/artifacts ---
bin/
obj/
# --- IMPORTANT: ensure PS scripts are not ignored by accident ---
!*.ps1
!*.psm1
!*.psd1