SenY commited on
Commit
74aa387
1 Parent(s): 1fbdc8c
Files changed (1) hide show
  1. add.bash +4 -1
add.bash CHANGED
@@ -1,5 +1,8 @@
1
  #!/bin/bash
2
 
3
  git ls-files --others --exclude-standard | while read line;do
4
- /storage/upload.py "$line"
 
 
 
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