mirror of
https://github.com/ToolJet/ToolJet
synced 2026-04-21 21:47:17 +00:00
Adding git status-all command to .gitconfig file (#12061)
This commit is contained in:
parent
a32580f14b
commit
a45744a894
1 changed files with 7 additions and 0 deletions
|
|
@ -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"
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue