Bulk updating of git projects
Need to refresh (pull) a larger number of git projects?
Simply execute this in your shell (fish):
for d in (ls); echo $d; cd $d; git pull; cd ..; end
Same in bash:
for d in $(ls); do echo $d; cd $d; git pull; cd ..; done
Written by Jens Hausherr
Related protips
Have a fresh tip? Share with Coderwall community!
Post
Post a tip
Best
#Fish
Authors
Sponsored by #native_company# — Learn More
#native_title#
#native_desc#