summaryrefslogtreecommitdiffstats
path: root/src/queue.rs
diff options
context:
space:
mode:
authorRichard Menzies <52405405+WizardOhio24@users.noreply.github.com>2021-02-23 10:02:16 +0000
committerGitHub <noreply@github.com>2021-02-23 11:02:16 +0100
commit6c974ee1d33977cb04e2e8377def291c3beef4ab (patch)
tree59cdad5ee4ec67a6749106689129ad6826f30655 /src/queue.rs
parent301a3a1b8766bd632d0a9ecb93bd8d5d74ad6c6b (diff)
Support force push (#421)
Diffstat (limited to 'src/queue.rs')
-rw-r--r--src/queue.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/queue.rs b/src/queue.rs
index 678baf6b..dc9c6503 100644
--- a/src/queue.rs
+++ b/src/queue.rs
@@ -29,6 +29,7 @@ pub enum Action {
ResetHunk(String, u64),
StashDrop(CommitId),
DeleteBranch(String),
+ ForcePush(String, bool),
}
///
@@ -60,7 +61,7 @@ pub enum InternalEvent {
///
OpenExternalEditor(Option<String>),
///
- Push(String),
+ Push(String, bool),
}
///