usecrate::{Alert, run_command};user_log::Logger;/// Pushes any commited changes in git to the authenticated remote repository.
pubfnpush(logger:&Logger)->Result<(), Alert>{run_command("git",["push"],Some(logger))?;run_command("git",["push","--tags"],Some(logger))?;Ok(())}