#!/bin/bash pushd ~/Work for i in */.git; do ( echo $i; cd $i/..; git pull; git submodule update --recursive; ); done popd
|
||||||
git 특정 디렉토리 하에 있는 모든 폴더를 pull (submodule 까지)#!/bin/bash pushd ~/Work for i in */.git; do ( echo $i; cd $i/..; git pull; git submodule update --recursive; ); done popd
|
||||||
|
Copyright © 2026 anydragon - All Rights Reserved Powered by WordPress & Atahualpa |
||||||
Leave a Reply