diff options
| author | Jeff Carr <[email protected]> | 2025-01-06 03:05:47 -0600 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-01-06 03:05:47 -0600 |
| commit | 35bec795e7195e967d95399329fe7b6d0b7cc069 (patch) | |
| tree | 3f1085a03ff5398a4299886342a6802e6b6f4822 /going2git/message.go | |
| parent | 8f9b66f6c8565f08e18098e330dfe73c22592b9f (diff) | |
| parent | 98b0d445bc513c5439421d1ec0d32874fc1350f9 (diff) | |
Merge branch 'jcarr' of gitea.wit.com:jcarr/wit-utils into jcarr
Diffstat (limited to 'going2git/message.go')
| -rw-r--r-- | going2git/message.go | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/going2git/message.go b/going2git/message.go deleted file mode 100644 index 817b5f2..0000000 --- a/going2git/message.go +++ /dev/null @@ -1,23 +0,0 @@ -package main - -import ( - "fmt" - - git "go.wit.com/lib/libgit2" - "go.wit.com/log" -) - -func main() { - var input git.Trailer - - input.Key = "Co-authored-by" - input.Value = "Alice <[email protected]>" - /* - git2go.Trailer - git2go.Trailer{Key: "Signed-off-by", Value: "Bob <[email protected]>"}} - */ - - fmt.Printf("%s", input) - actual, err := git.MessageTrailers(input.Key) - log.Info("actual", actual, err) -} |
