SenY commited on
Commit
17527dc
1 Parent(s): f0ee464
Files changed (1) hide show
  1. add.bash +5 -0
add.bash ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
 
1
+ #!/bin/bash
2
+
3
+ git ls-files --others --exclude-standard | while read line;do
4
+ git add "$line"; git commit -am "$line"; git push
5
+ done