git

package
v0.3.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jul 2, 2025 License: MIT Imports: 5 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Repository

type Repository struct {
	// contains filtered or unexported fields
}

func NewRepository

func NewRepository(path string) (*Repository, error)

func (*Repository) BranchExists

func (r *Repository) BranchExists(branch string) (bool, error)

BranchExists checks if a branch exists locally

func (*Repository) CreateWorktree

func (r *Repository) CreateWorktree(path, branch string) error

func (*Repository) ExecuteGitCommand

func (r *Repository) ExecuteGitCommand(args ...string) error

ExecuteGitCommand executes a git command in the repository directory

func (*Repository) GetMainWorktreePath

func (r *Repository) GetMainWorktreePath() (string, error)

GetMainWorktreePath returns the path to the main worktree (original repository) This is useful when running commands from within a worktree

func (*Repository) GetRemoteBranches

func (r *Repository) GetRemoteBranches(branch string) (map[string]string, error)

GetRemoteBranches returns a map of remote branches by remote name

func (*Repository) GetWorktrees

func (r *Repository) GetWorktrees() ([]Worktree, error)

func (*Repository) Path

func (r *Repository) Path() string

func (*Repository) RemoveWorktree

func (r *Repository) RemoveWorktree(path string, force bool) error

func (*Repository) ResolveBranch

func (r *Repository) ResolveBranch(branch string) (resolvedBranch string, isRemote bool, err error)

ResolveBranch resolves a branch name following git's behavior: 1. Check if branch exists locally 2. If not, check remote branches 3. If multiple remotes have the branch, return an error

type Worktree

type Worktree struct {
	Path   string
	Branch string
	HEAD   string
}

func (*Worktree) Name

func (w *Worktree) Name() string

func (*Worktree) String

func (w *Worktree) String() string

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL