commitgraph

package
v0.0.0-...-224ccea Latest Latest
Warning

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

Go to latest
Published: Jan 19, 2025 License: MIT Imports: 3 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func IsSink

func IsSink(n Node, dag DAG) bool

func IsSource

func IsSource(n Node, dag DAG) bool

Types

type DAG

type DAG struct {
	// Keys are short commit hashes
	Nodes map[string]Node
	// Keys are children, values are parents
	ParentEdges map[string]map[string]struct{}
	// Keys are parents, values are children
	ChildrenEdges map[string]map[string]struct{}
}

func Compute

func Compute(log libgit.Log) (DAG, error)

type Node

type Node struct {
	Author  string
	Subject string
	Date    string
	Hash    string
	// Sorted in reverse lexicographic order
	LocalBranches []string
}

Jump to

Keyboard shortcuts

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