Guest User

Untitled

a guest
Feb 18th, 2019
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. #!/usr/bin/env bash
  2.  
  3. for file in $(git status --short | grep "??" | tr --delete ?); do
  4. echo "Adding ${file}"
  5. git add $file
  6. git commit -m "Added $file"
  7. git push origin master
  8. echo "Done pushing $file";
  9. done
Add Comment
Please, Sign In to add comment