MCPcopy
hub / github.com/go-git/go-git / Worktree

Struct Worktree

worktree.go:37–44  ·  view source on GitHub ↗

Worktree represents a git worktree.

Source from the content-addressed store, hash-verified

35
36// Worktree represents a git worktree.
37type Worktree struct {
38 // Filesystem underlying filesystem.
39 Filesystem billy.Filesystem
40 // External excludes not found in the repository .gitignore
41 Excludes []gitignore.Pattern
42
43 r *Repository
44}
45
46// Pull incorporates changes from a remote repository into the current branch.
47// Returns nil if the operation is successful, NoErrAlreadyUpToDate if there are

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected