Skip to content
This repository was archived by the owner on Dec 12, 2024. It is now read-only.

Commit e135fa1

Browse files
fix: fix the fix for including remotes, s/--remotes/--all/
1 parent 53598c7 commit e135fa1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ where
135135

136136
pub fn list_branches_cmd(config: impl FnOnce(&mut Command) -> &mut Command) -> EasyCommand {
137137
EasyCommand::new_with("git", |cmd| {
138-
config(cmd.args(["branch", "--list", "--remote", "--format=%(refname:short)"]))
138+
config(cmd.args(["branch", "--list", "--all", "--format=%(refname:short)"]))
139139
})
140140
}
141141

0 commit comments

Comments
 (0)