Guest User

Untitled

a guest
May 24th, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.13 KB | None | 0 0
  1. # find all .git directories and exec "git pull" on the parent.
  2. find . -type d -name .git -exec sh -c "cd \"{}\"/../ && pwd && git pull" \;
Add Comment
Please, Sign In to add comment