Skip to content

Instantly share code, notes, and snippets.

@katagaki
Last active July 27, 2025 12:40
Show Gist options
  • Select an option

  • Save katagaki/584e99ba6013e61d87976ba771b89758 to your computer and use it in GitHub Desktop.

Select an option

Save katagaki/584e99ba6013e61d87976ba771b89758 to your computer and use it in GitHub Desktop.
Run git pull on all subdirectories
for dir in */; do cd "$dir" && git fetch && git pull && cd ..; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment