add.bash
Browse files
add.bash
CHANGED
@@ -1,5 +1,8 @@
|
|
1 |
#!/bin/bash
|
2 |
|
3 |
git ls-files --others --exclude-standard | while read line;do
|
4 |
-
|
|
|
|
|
|
|
5 |
done
|
|
|
1 |
#!/bin/bash
|
2 |
|
3 |
git ls-files --others --exclude-standard | while read line;do
|
4 |
+
#/storage/upload.py "$line"
|
5 |
+
git add "$line"
|
6 |
+
git commit -am "$line"
|
7 |
+
git push
|
8 |
done
|