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