(message: &str)
| 35 | } |
| 36 | |
| 37 | pub async fn commit(message: &str) -> Result<()> { |
| 38 | run_git_command(&["commit", "-m", message]).await |
| 39 | } |
| 40 | |
| 41 | pub async fn push(branch_name: &str) -> Result<()> { |
| 42 | run_git_command(&["push", "--set-upstream", "origin", branch_name]).await |
no test coverage detected