diff options
Diffstat (limited to '')
-rw-r--r-- | internal/git2c/cmd_treeraw.go (renamed from internal/git2c/cmd2.go) | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/git2c/cmd2.go b/internal/git2c/cmd_treeraw.go index 3bff332..c93480a 100644 --- a/internal/git2c/cmd2.go +++ b/internal/git2c/cmd_treeraw.go @@ -9,7 +9,7 @@ import ( "io" ) -func (c *Client) Cmd2(repoPath, pathSpec string) ([]TreeEntry, string, error) { +func (c *Client) CmdTreeRaw(repoPath, pathSpec string) ([]TreeEntry, string, error) { if err := c.writer.WriteData([]byte(repoPath)); err != nil { return nil, "", fmt.Errorf("sending repo path failed: %w", err) } |