`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.

3 Likes

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;
2 Likes