Documentation
¶
Index ¶
- Variables
- func AgeDays(path string) (int, error)
- func AgeHours(path string) (int, error)
- func CleanAllStaleLocks(cfg *config.Config)
- func CleanStaleLocks(cfg *config.Config, repo string)
- func CleanupFailedAdd(originPath, worktreePath, branch string)
- func LastActivity(path string) (time.Time, error)
- func ParseBranchFromName(name string) string
- func ParseRepoFromName(name string) string
- func RemoveStaleLock(lockFile, name string)
- type Stats
- type Type
- type Worktree
Constants ¶
This section is empty.
Variables ¶
var GitMu sync.Mutex
GitMu serializes git worktree operations to prevent concurrent index.lock conflicts.
Functions ¶
func CleanAllStaleLocks ¶
CleanAllStaleLocks cleans stale locks across all known repos.
func CleanStaleLocks ¶
CleanStaleLocks removes stale index.lock files from worktrees of the given repo. A lock is considered stale if the PID inside it is no longer running.
func CleanupFailedAdd ¶ added in v0.7.0
func CleanupFailedAdd(originPath, worktreePath, branch string)
CleanupFailedAdd cleans up after a failed "git worktree add" that may have created the branch and/or a partial worktree directory but failed to complete (e.g., "Could not write new index file"). It removes the partial worktree directory, prunes git's worktree metadata, and deletes the orphaned branch.
originPath is the main repo directory, worktreePath is the target worktree directory, and branch is the git branch that was being created.
func LastActivity ¶
LastActivity returns the date of the last commit in the worktree.
func ParseBranchFromName ¶
ParseBranchFromName extracts the branch suffix from a worktree directory name. e.g., "mono-feature-branch" -> "feature-branch"
func ParseRepoFromName ¶
ParseRepoFromName extracts the repo short name from a worktree directory name. e.g., "mono-pr-1234" -> "mono"
func RemoveStaleLock ¶ added in v0.7.0
func RemoveStaleLock(lockFile, name string)
RemoveStaleLock removes an index.lock file only if the holding process is no longer running. Safe to call if the file does not exist.
Types ¶
type Stats ¶
type Stats struct {
Total int `json:"total"`
PRReviews int `json:"pr_reviews"`
Features int `json:"features"`
ByRepo map[string]int `json:"by_repo"`
}
Stats holds worktree statistics.
type Worktree ¶
type Worktree struct {
Path string `json:"path"`
Name string `json:"name"`
Branch string `json:"branch"`
Type Type `json:"type"`
PRNumber int `json:"pr_number,omitempty"`
Repo string `json:"repo"`
}
Worktree represents a discovered git worktree.