]> localhost Git - dotfiles.git/commitdiff
Add global gitignore
authorMisomosi <[email protected]>
Thu, 3 Oct 2024 00:53:07 +0000 (20:53 -0400)
committerMisomosi <[email protected]>
Thu, 3 Oct 2024 00:53:07 +0000 (20:53 -0400)
.config/git/ignore [new file with mode: 0644]
README.md

diff --git a/.config/git/ignore b/.config/git/ignore
new file mode 100644 (file)
index 0000000..cec6ab8
--- /dev/null
@@ -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
index f9e4f4338cb886f722b2f234dd75db2e308ea174..16375fa1a613c890283f07923b48154ac9925ffa 100644 (file)
--- 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
+```