From 63a83e4fcde33f7661ffc1d63b2f1b01a657bccf Mon Sep 17 00:00:00 2001 From: Richard Feldman Date: Wed, 1 Apr 2026 15:10:00 -0400 Subject: [PATCH] Fix formatting in repository.rs --- crates/git/src/repository.rs | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/crates/git/src/repository.rs b/crates/git/src/repository.rs index 497f31094e95091db0c819a1aeed63eebf61f554..48648809e5dee26f5e678ef8942c4932318ec314 100644 --- a/crates/git/src/repository.rs +++ b/crates/git/src/repository.rs @@ -1672,10 +1672,7 @@ impl GitRepository for RealGitRepository { from_commit: Option, ) -> BoxFuture<'_, Result<()>> { let git_binary = self.git_binary(); - let mut args = vec![ - OsString::from("worktree"), - OsString::from("add"), - ]; + let mut args = vec![OsString::from("worktree"), OsString::from("add")]; if let Some(branch_name) = &branch_name { args.push(OsString::from("-b")); args.push(OsString::from(branch_name.as_str()));