diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/git.rs | 2 |
1 files changed, 1 insertions, 1 deletions
| @@ -372,7 +372,7 @@ impl RepoActions for Repo { | |||
| 372 | if let Ok(last_patch) = patches_to_apply.last().context("no patches") { | 372 | if let Ok(last_patch) = patches_to_apply.last().context("no patches") { |
| 373 | last_patch | 373 | last_patch |
| 374 | } else { | 374 | } else { |
| 375 | self.checkout(branch_name).context("latest commit in proposal doesnt connect with an existing commit. Try a git pull on master first.")?; | 375 | self.checkout(branch_name).context("the parent commit of the proposal doesnt exist in your local repoistory. Try a git pull on master first.")?; |
| 376 | return Ok(vec![]); | 376 | return Ok(vec![]); |
| 377 | }, | 377 | }, |
| 378 | "parent-commit", | 378 | "parent-commit", |