mirror of
https://github.com/dekuNukem/exixe.git
synced 2025-10-24 11:11:04 -07:00
16 lines
478 B
Bash
16 lines
478 B
Bash
if [[ $# -eq 0 ]] ; then
|
|
echo 'error: please enter a commit comment'
|
|
exit 1
|
|
fi
|
|
|
|
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
|