7 lines
89 B
Bash
Executable File
7 lines
89 B
Bash
Executable File
#!/bin/sh
|
|
find . -empty -delete
|
|
fdupes -rNd .
|
|
git add *
|
|
git commit -m "update."
|
|
git push
|