LECO / add.bash
hhks
Duplicate from SenY/LECO
be5c3a0
raw
history blame contribute delete
No virus
156 Bytes
#!/bin/bash
git ls-files --others --exclude-standard | while read line;do
#/storage/upload.py "$line"
git add "$line"
git commit -am "$line"
git push
done