#!/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