From: Misomosi Date: Thu, 3 Oct 2024 00:53:07 +0000 (-0400) Subject: Add global gitignore X-Git-Url: http://git.misomosispi.com/?a=commitdiff_plain;h=2880f91eecd0131894b8ae2f5171629f7d46e2ac;p=dotfiles.git Add global gitignore --- 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 +```