mirror of
https://github.com/dekuNukem/exixe.git
synced 2025-10-31 11:17:03 -07:00
11 lines
390 B
Bash
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
|