diff options
Diffstat (limited to 'object/commit')
| -rw-r--r-- | object/commit/append.go | 4 | ||||
| -rw-r--r-- | object/commit/commit.go | 4 | ||||
| -rw-r--r-- | object/commit/doc.go | 2 | ||||
| -rw-r--r-- | object/commit/parse.go | 4 | ||||
| -rw-r--r-- | object/commit/type.go | 2 |
5 files changed, 8 insertions, 8 deletions
diff --git a/object/commit/append.go b/object/commit/append.go index 31031ed1..110d589f 100644 --- a/object/commit/append.go +++ b/object/commit/append.go @@ -3,8 +3,8 @@ package commit import ( "fmt" - "codeberg.org/lindenii/furgit/object/header" - "codeberg.org/lindenii/furgit/object/typ" + "lindenii.org/go/furgit/object/header" + "lindenii.org/go/furgit/object/typ" ) // AppendWithoutHeader renders the raw commit body bytes. diff --git a/object/commit/commit.go b/object/commit/commit.go index e89b5368..f41366b7 100644 --- a/object/commit/commit.go +++ b/object/commit/commit.go @@ -1,8 +1,8 @@ package commit import ( - "codeberg.org/lindenii/furgit/object/id" - "codeberg.org/lindenii/furgit/object/signature" + "lindenii.org/go/furgit/object/id" + "lindenii.org/go/furgit/object/signature" ) // Commit represents a fully materialized Git commit object. diff --git a/object/commit/doc.go b/object/commit/doc.go index 51075f9b..3c287122 100644 --- a/object/commit/doc.go +++ b/object/commit/doc.go @@ -4,5 +4,5 @@ // It does not preserve the exact original byte layout // needed for signature verification; // callers that need signature-verification payload fidelity -// should use [codeberg.org/lindenii/furgit/object/signed/commit]. +// should use [lindenii.org/go/furgit/object/signed/commit]. package commit diff --git a/object/commit/parse.go b/object/commit/parse.go index e5b7a06e..1212423f 100644 --- a/object/commit/parse.go +++ b/object/commit/parse.go @@ -5,8 +5,8 @@ import ( "errors" "fmt" - "codeberg.org/lindenii/furgit/object/id" - "codeberg.org/lindenii/furgit/object/signature" + "lindenii.org/go/furgit/object/id" + "lindenii.org/go/furgit/object/signature" ) // ErrInvalidCommit indicates an attempt to parse an invalid commit. diff --git a/object/commit/type.go b/object/commit/type.go index 065b7174..80715a72 100644 --- a/object/commit/type.go +++ b/object/commit/type.go @@ -1,7 +1,7 @@ package commit import ( - "codeberg.org/lindenii/furgit/object/typ" + "lindenii.org/go/furgit/object/typ" ) // ObjectType returns TypeCommit. |
