--- /dev/null
+# 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
# dotfiles
-
**Are You Tired of Debugging Your Configurations?**
**Have to Deal With Yet Another Trash Embedded System That Can't Handle Your Config?**
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
+```