Worktree represents a git worktree.
| 35 | |
| 36 | // Worktree represents a git worktree. |
| 37 | type 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 |
nothing calls this directly
no outgoing calls
no test coverage detected