Skip to content

Commit

Permalink
Merge pull request #22 from ErichDonGubler/fix-include-remote
Browse files Browse the repository at this point in the history
fix: fix the fix for including remotes, s/--remotes/--all/
  • Loading branch information
ErichDonGubler authored May 29, 2024
2 parents 53598c7 + e135fa1 commit 58901df
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ where

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

Expand Down

0 comments on commit 58901df

Please sign in to comment.