meta stuff

This commit is contained in:
anon 2024-07-22 19:40:04 +02:00
parent eea30d6b4a
commit c76113e400
2 changed files with 22 additions and 0 deletions

13
.gitignore vendored

@ -21,6 +21,17 @@ __pycache__/
*.ncb
*.gch
*.gch.stamp
C_C++/sds/sds/
# Java
*.class
*.jar
# Haskell
*.hi
# Latex
LaTeX/*.pdf
LaTeX/*.synctex.gz
LaTeX/*.aux
LaTeX/*.log
# Tooling
*.gdb-*
*.gdb_*
@ -35,3 +46,5 @@ tmp-*
*.swo
*.swn
*.opendb
*.bin
.do_ignore/

@ -1,2 +1,11 @@
main:
@echo "available targets: clean batch_commit"
clean:
-rm *.out
batch_commit:
@for file in $(shell git ls-files --others --exclude-standard); do \
git add $$file; \
git commit -m "Added '$$file'"; \
done