cc53877328
Seed ~/.gitignore_global from /etc/skel-devbox (seed-if-absent, like .bash_aliases/.inputrc, so user edits survive recreate) and wire it via git config --global core.excludesFile, guarded so a user-set excludesFile is never overridden. Ignores *.bak, *.bak.*, *~, *.orig, *.swp, *.tmp across all repos without per-repo .gitignore entries.
12 lines
323 B
Plaintext
12 lines
323 B
Plaintext
# Global gitignore — personal/tooling artifacts (applies to all repos in the container)
|
|
# Seeded into $HOME/.gitignore_global by entrypoint-user.sh and wired via
|
|
# `git config --global core.excludesFile`. Edit freely; it is yours after first boot.
|
|
|
|
# backup / editor / merge artifacts
|
|
*.bak
|
|
*.bak.*
|
|
*~
|
|
*.orig
|
|
*.swp
|
|
*.tmp
|