自動更新當前目錄下所有 Git 儲存庫 發表於 2023-04-23 更新於 2023-12-24 分類於 Git Disqus: 以下 Bash 腳本會自動 Pull 當前目錄下所有儲存庫的程式碼: #!/bin/bashfor dir in */; do if [ -d "$dir/.git" ]; then echo "Updating $dir" cd "$dir" git pull cd .. fidone