mirror of
https://github.com/gitbutlerapp/gitbutler.git
synced 2024-12-18 23:02:31 +03:00
a2aafd919b
- The PatchReference type represents a "reference" that is entirely managed by GitButler. It can either point to a commit or a GitButler change (which itself points to a commit) - The Branch type (as persisted in virtual_branches.toml) now has a `heads` fields with a list of PatchReferences. This list is not to be meant to be manipulated directly, but with the `Stack` trait
12 lines
272 B
TOML
12 lines
272 B
TOML
[package]
|
|
name = "gitbutler-patch-reference"
|
|
version = "0.0.0"
|
|
edition = "2021"
|
|
authors = ["GitButler <gitbutler@gitbutler.com>"]
|
|
publish = false
|
|
|
|
[dependencies]
|
|
anyhow = "1.0.86"
|
|
serde = { workspace = true, features = ["std"] }
|
|
gitbutler-command-context.workspace = true
|