(branch: &str)
| 4974 | } |
| 4975 | |
| 4976 | fn github_push_new_branch(branch: &str) -> anyhow::Result<()> { |
| 4977 | git_run(&["push", "-u", "origin", branch]) |
| 4978 | } |
| 4979 | |
| 4980 | fn github_push_current_branch() -> anyhow::Result<()> { |
| 4981 | git_run(&["push"]) |
no test coverage detected