From 2880f91eecd0131894b8ae2f5171629f7d46e2ac Mon Sep 17 00:00:00 2001 From: Misomosi Date: Wed, 2 Oct 2024 20:53:07 -0400 Subject: [PATCH] Add global gitignore --- .config/git/ignore | 16 ++++++++++++++++ README.md | 22 +++++++++++++++++++++- 2 files changed, 37 insertions(+), 1 deletion(-) create mode 100644 .config/git/ignore diff --git a/.config/git/ignore b/.config/git/ignore new file mode 100644 index 0000000..cec6ab8 --- /dev/null +++ b/.config/git/ignore @@ -0,0 +1,16 @@ +# Scripts I use in git repos to automate certain niceties +*.i.sh +*.i.bat +*.i.mak + +# Ruby version commit should be explicit with '-f' +.ruby-version + +# Common executable formats I forget sometimes +*.so +*.dll +*.dylib +*.exe +*.bin +*.elf +*.out diff --git a/README.md b/README.md index f9e4f43..16375fa 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,4 @@ # dotfiles - **Are You Tired of Debugging Your Configurations?** **Have to Deal With Yet Another Trash Embedded System That Can't Handle Your Config?** @@ -54,3 +53,24 @@ Host github.com PreferredAuthentications publickey IdentityFile ~/.ssh/id_file ``` + +## .gitignore + +``` +# Scripts I use in git repos to automate certain niceties +*.i.sh +*.i.bat +*.i.mak + +# Ruby version commit should be explicit with '-f' +.ruby-version + +# Common executable formats I forget sometimes +*.so +*.dll +*.dylib +*.exe +*.bin +*.elf +*.out +``` -- 2.49.1