Guest User

Untitled

a guest
Dec 11th, 2018
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. #!/bin/bash
  2.  
  3. CURDIR=`pwd`
  4.  
  5. for dn in `find . -maxdepth 1 -type d`
  6. do
  7. [ "$dn" == "." ] && continue
  8.  
  9. echo $dn
  10. cd $dn
  11. git fetch origin
  12. git push crocos --all
  13. git push crocos --tags
  14. cd $CURDIR
  15. done
Add Comment
Please, Sign In to add comment