From 2745abcfcc8d1c1db9b22c55e7d3de5219dc2546 Mon Sep 17 00:00:00 2001 From: Simon Ruderich Date: Sat, 1 Apr 2023 10:18:00 +0200 Subject: [PATCH] Move all non-empty .gitignore to top-level --- .gitignore | 71 +++++++++++++++++++++++++++++++++++++++++++ mail/.gitignore | 18 ----------- misc/.gitignore | 7 ----- multimedia/.gitignore | 4 --- os/.gitignore | 4 --- shell/.gitignore | 18 ----------- vcs/.gitignore | 3 -- vim/.gitignore | 5 --- x11/.gitignore | 7 ----- 9 files changed, 71 insertions(+), 66 deletions(-) create mode 100644 .gitignore delete mode 100644 mail/.gitignore delete mode 100644 misc/.gitignore delete mode 100644 multimedia/.gitignore delete mode 100644 os/.gitignore delete mode 100644 shell/.gitignore delete mode 100644 vcs/.gitignore delete mode 100644 vim/.gitignore delete mode 100644 x11/.gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..df156a9 --- /dev/null +++ b/.gitignore @@ -0,0 +1,71 @@ +# Ignore GnuPG files not stored in Git. +/mail/gnupg/.gpg-v21-migrated +/mail/gnupg/openpgp-revocs.d/ +/mail/gnupg/private-keys-v1.d/ +/mail/gnupg/pubring.gpg +/mail/gnupg/pubring.gpg~ +/mail/gnupg/random_seed +/mail/gnupg/secring.gpg +/mail/gnupg/trustdb.gpg +# Ignore files generated by setup.sh. +/mail/mutt/display +# Ignore local files. +/mail/mutt/adfooters/ +/mail/mutt/mlfooters/ +# Ignore generated files. +/mail/mutt/history + +/misc/ghc/ghci_history +/misc/ghc/x86_64-linux-*/ +/misc/lftp/rl_history +/misc/maxima/maxout.gnuplot_pipes +/misc/psql/history +/misc/psql/psqlrc +/misc/sqlite/sqliterc + +/multimedia/handbrake/Activity.log.* +/multimedia/handbrake/EncodeLogs/ +/multimedia/handbrake/ghb.pid.* +/multimedia/handbrake/queue.* + +# Ignore files created by setup.sh. +/os/debian/aptitude/config +# Ignore temporary files. +/os/debian/aptitude/cache + +# Ignore generated files. +/shell/digrc +/shell/htoprc +/shell/screenrc +/shell/shell/aliases +/shell/shell/dircolors +/shell/tmux-window1.conf +/shell/tmux-window2.conf +/shell/tmux.conf +/shell/zsh/functions/_iptables +# Ignore temporary files. +/shell/lesshistory +/shell/zsh/cache +/shell/zsh/history* +# Ignore unimportant files. +/shell/crontab.d/crontab.dotfiles-vim +/shell/crontab.d/crontab.jobs +/shell/zsh/libcoloredstderr.so + +/vcs/cvsrc +/vcs/gitconfig +/vcs/tigrc + +# Ignore unnecessary Vim files. +/vim/vim/bundle/*/doc/tags +/vim/vim/cache/ +/vim/vim/doc/tags +/vim/vim/spell/ + +# Generated by setup.sh. +/x11/Xresources +# Generated by Xmonad. +/x11/xmonad/xmonad.errors +/x11/xmonad/xmonad.hi +/x11/xmonad/xmonad.o +/x11/xmonad/xmonad-* diff --git a/mail/.gitignore b/mail/.gitignore deleted file mode 100644 index db7267f..0000000 --- a/mail/.gitignore +++ /dev/null @@ -1,18 +0,0 @@ -# Ignore GnuPG files not stored in Git. -/gnupg/.gpg-v21-migrated -/gnupg/openpgp-revocs.d/ -/gnupg/private-keys-v1.d/ -/gnupg/pubring.gpg -/gnupg/pubring.gpg~ -/gnupg/random_seed -/gnupg/secring.gpg -/gnupg/trustdb.gpg - -# Ignore files generated by setup.sh. -/mutt/display - -# Ignore local files. -/mutt/adfooters/ -/mutt/mlfooters/ -# Ignore generated files. -/mutt/history diff --git a/misc/.gitignore b/misc/.gitignore deleted file mode 100644 index 2f5d841..0000000 --- a/misc/.gitignore +++ /dev/null @@ -1,7 +0,0 @@ -/ghc/ghci_history -/ghc/x86_64-linux-*/ -/lftp/rl_history -/maxima/maxout.gnuplot_pipes -/psql/history -/psql/psqlrc -/sqlite/sqliterc diff --git a/multimedia/.gitignore b/multimedia/.gitignore deleted file mode 100644 index 989cf00..0000000 --- a/multimedia/.gitignore +++ /dev/null @@ -1,4 +0,0 @@ -/handbrake/Activity.log.* -/handbrake/EncodeLogs/ -/handbrake/ghb.pid.* -/handbrake/queue.* diff --git a/os/.gitignore b/os/.gitignore deleted file mode 100644 index d19959a..0000000 --- a/os/.gitignore +++ /dev/null @@ -1,4 +0,0 @@ -# Ignore files created by setup.sh. -/debian/aptitude/config -# Ignore temporary files. -/debian/aptitude/cache diff --git a/shell/.gitignore b/shell/.gitignore deleted file mode 100644 index 69f3031..0000000 --- a/shell/.gitignore +++ /dev/null @@ -1,18 +0,0 @@ -# Ignore generated files. -/digrc -/htoprc -/screenrc -/shell/aliases -/shell/dircolors -/tmux-window1.conf -/tmux-window2.conf -/tmux.conf -/zsh/functions/_iptables -# Ignore temporary files. -/lesshistory -/zsh/cache -/zsh/history* -# Ignore unimportant files. -/crontab.d/crontab.dotfiles-vim -/crontab.d/crontab.jobs -/zsh/libcoloredstderr.so diff --git a/vcs/.gitignore b/vcs/.gitignore deleted file mode 100644 index f1477dd..0000000 --- a/vcs/.gitignore +++ /dev/null @@ -1,3 +0,0 @@ -cvsrc -gitconfig -tigrc diff --git a/vim/.gitignore b/vim/.gitignore deleted file mode 100644 index f0da910..0000000 --- a/vim/.gitignore +++ /dev/null @@ -1,5 +0,0 @@ -# Ignore unnecessary Vim files. -/vim/bundle/*/doc/tags -/vim/cache/ -/vim/doc/tags -/vim/spell/ diff --git a/x11/.gitignore b/x11/.gitignore deleted file mode 100644 index 27bf49b..0000000 --- a/x11/.gitignore +++ /dev/null @@ -1,7 +0,0 @@ -# Generated by setup.sh. -/Xresources -# Generated by Xmonad. -/xmonad/xmonad.errors -/xmonad/xmonad.hi -/xmonad/xmonad.o -/xmonad/xmonad-* -- 2.43.2