1 2 3 4 5 |
#!/bin/bash pushd ~/Work for i in */.git; do ( echo $i; cd $i/..; git restore .; git clean -d -fx; git submodule foreach --recursive git restore .; git submodule foreach --recursive git clean -d -xf; ); done popd |
|
||||||
git 특정 디렉토리 하에 있는 모든 폴더를 cleanup (submodule 까지)
|
||||||
Copyright © 2024 anydragon - All Rights Reserved Powered by WordPress & Atahualpa |
Leave a Reply