다짜고짜 pully의 코드부터 써 본다. #!/bin/sh # Written by Don Kim (dgkimdev@gmail.com) # # It reads "/path/to/repo:branchname" and updates it (via `git up`). # # If you don't have `git up`, check this and consider it; # https://stackoverflow.com/questions/918886 while IFS=':' read -ra PAIR; do echo "${PAIR}" cd ${PAIR[0]} && git checkout ${PAIR[1]} && git up ${PAIR[1]} done 그리고 이 스크립트에게 던져 줄 먹이를 준비한다. # fil..