summaryrefslogtreecommitdiffstats
path: root/src/queue.rs
diff options
context:
space:
mode:
authorzcorniere <zacharie@corniere.me>2021-08-15 17:44:55 +0200
committerGitHub <noreply@github.com>2021-08-15 17:44:55 +0200
commit56502ad3fd0b27fdca7afac1fbcb11c13ca10aaa (patch)
tree7be546b28f17bbe04adda8970d9d90c5ee45d4df /src/queue.rs
parent62ea1dea042e5f5789802e326d32517460650693 (diff)
ability to delete remote branch (#838)
* added ability to delete remote branch (closes #622)
Diffstat (limited to 'src/queue.rs')
-rw-r--r--src/queue.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/queue.rs b/src/queue.rs
index b50b9d53..6c781e2b 100644
--- a/src/queue.rs
+++ b/src/queue.rs
@@ -32,7 +32,7 @@ pub enum Action {
ResetLines(String, Vec<DiffLinePosition>),
StashDrop(CommitId),
StashPop(CommitId),
- DeleteBranch(String),
+ DeleteBranch(String, bool),
DeleteTag(String),
ForcePush(String, bool),
PullMerge { incoming: usize, rebase: bool },
@@ -76,7 +76,7 @@ pub enum InternalEvent {
///
OpenExternalEditor(Option<String>),
///
- Push(String, bool),
+ Push(String, bool, bool),
///
Pull(String),
///