refactor: rename git command to align with others

This commit is contained in:
Jacobtread 2025-08-10 21:44:08 +12:00
parent 87c5f729de
commit 07dd1cf009
4 changed files with 6 additions and 6 deletions

View file

@ -363,7 +363,7 @@ pub trait GitRepository: Send + Sync {
/// Returns the git commit log returning at most `max_count` commits from
/// the current branch, skipping `skip` results
fn git_log(&self, skip: u64, max_count: u64) -> BoxFuture<'_, Result<Vec<CommitDetails>>>;
fn log(&self, skip: u64, max_count: u64) -> BoxFuture<'_, Result<Vec<CommitDetails>>>;
fn load_commit(&self, commit: String, cx: AsyncApp) -> BoxFuture<'_, Result<CommitDiff>>;
fn blame(&self, path: RepoPath, content: Rope) -> BoxFuture<'_, Result<crate::blame::Blame>>;
@ -620,7 +620,7 @@ impl GitRepository for RealGitRepository {
.boxed()
}
fn git_log(&self, skip: u64, max_size: u64) -> BoxFuture<'_, Result<Vec<CommitDetails>>> {
fn log(&self, skip: u64, max_size: u64) -> BoxFuture<'_, Result<Vec<CommitDetails>>> {
let working_directory = self.working_directory();
self.executor
.spawn(async move {