1
0
Fork 0

Material und Methoden ausgebaut

This commit is contained in:
Alexander Minges 2012-07-23 17:22:31 +02:00
parent 51e9a38dba
commit 2e5d56eda2
5 changed files with 151 additions and 34 deletions

30
git_push.sh Executable file
View file

@ -0,0 +1,30 @@
#!/bin/bash
# Entferne Backup-Dateien
rm ./*.tex.backup
rm ./inc/*.tex.backup
# Entferne temporäre Editor-Dateien
rm ./*.tex~
rm ./*.aux~
rm ./inc/*.tex~
rm ./inc/*.aux~
#Entferne LaTeX-Hilfsdateien
rm ./*.aux
rm ./inc/*.aux
rm ./*.bbl
rm ./*.blg
rm ./*.lof
rm ./*.lot
rm ./*.log
rm ./*.out
rm ./*.toc
#Entferne aus EPS-Dateien erstellte PDFs
rm ./img/*-eps-converted-to.pdf
#Eigentlicher git-push
git add .
git commit -a
git push