Skip to content

Instantly share code, notes, and snippets.

View vipero07's full-sized avatar

Eitan Miller vipero07

  • Atalan Tech Inc.
View GitHub Profile
@vipero07
vipero07 / .gitconfig
Created October 18, 2023 13:53
git all alias for .gitconfig - runs git command on all subdirectories
[alias]
all = "!f() { ls -R --directory --color=never */.git | sed 's/\\/.git//' | xargs -P10 -I{} git -C {} $1; }; f"