Adding git status-all command to .gitconfig file (#12061)

This commit is contained in:
Adish M 2025-02-27 11:47:58 +05:30 committed by GitHub
parent a32580f14b
commit a45744a894
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -139,3 +139,10 @@
echo \"Pushing changes in submodules...\"; \ echo \"Pushing changes in submodules...\"; \
git submodule foreach --quiet --recursive \"git push\"; \ git submodule foreach --quiet --recursive \"git push\"; \
}; f" }; f"
status-all = "!f() { \
echo \"Status of base repo...\"; \
git status; \
echo \"Status of submodules...\"; \
git submodule foreach --quiet --recursive \"git status\"; \
}; f"