feat: add pushall alias to git configurations and update jetbrains toolbox paths
Some checks failed
Ansible Lint Check / check-ansible (push) Failing after 33s
Nix Format Check / check-format (push) Failing after 22s
Python Lint Check / check-python (push) Failing after 7s

This commit is contained in:
2025-07-22 14:25:53 +02:00
parent 4a1575594a
commit b11c9a32a8
7 changed files with 23 additions and 10 deletions

View File

@@ -23,3 +23,6 @@
[safe]
directory = *
[alias]
pushall = "!f() { for var in $(git remote show); do echo \"pushing to $var\"; git push $var; done; }; f"