Files
exixe/push.sh
2017-11-30 15:06:15 +00:00

11 lines
390 B
Bash

find . -type f -name "*.b#*" -exec rm -f {} \;
find . -type f -name "*.s#*" -exec rm -f {} \;
find . -type f -name "*.l#*" -exec rm -f {} \;
find . -type f -name "*.csv#*" -exec rm -f {} \;
find . -type f -name "*.DS_Store*" -exec rm -f {} \;
find . -name "__pycache__" -exec rm -rf {} \;
find . -type f -name "._*" -exec rm -f {} \;
git add --all
git commit -m "$@"
git push origin master