`flox push --all`

It would be nice to be able to push all environments at once, to make sure that nothing is left unsaved in the floxmeta repository.

Logged this one for consideration, great idea! Thanks Eric!

I found a trick in the meantime:

for n in $(flox git branch); if [[ $n != "floxmain" ]]; then; flox git push origin $n; fi;