File size: 156 Bytes
be5c3a0
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
#!/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