${PRINT_USAGE:-:} <<EOF
    delete_from_origin  Removes the current environment (branches) from origin on all repos
                        in the environment.
EOF

command_delete_from_origin() {
    valid_env_name $context || error "Invalid environment to delete. '${context}' is protected or otherwise invalid"
    env_exists $context || error "'${context}' does not appear to exist?"
    echo "This will remove $context branch from the following modules: $(mods_in_group $context). Continue?"
    confirm || error "Not removing environment branch $context"
    gita super push --delete origin $context
}
return 0
