Add simple gitignore wrapper

Signed-off-by: Knut Ahlers <knut@ahlers.me>
This commit is contained in:
Knut Ahlers 2017-08-07 11:11:09 +02:00
parent b559e0ecc4
commit af54670666
Signed by: luzifer
GPG key ID: DC2729FDD34BE99E

5
bin/gitignore Executable file
View file

@ -0,0 +1,5 @@
#!/bin/bash
for i in "$@"; do
echo "$i" >> .gitignore
done