Material und Methoden ausgebaut
This commit is contained in:
parent
51e9a38dba
commit
2e5d56eda2
5 changed files with 151 additions and 34 deletions
30
git_push.sh
Executable file
30
git_push.sh
Executable 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
|
Loading…
Add table
Add a link
Reference in a new issue