Skip to content

Commit

Permalink
Adapt for renamed project
Browse files Browse the repository at this point in the history
  • Loading branch information
carhartl committed Jun 2, 2023
1 parent 4e04bc2 commit e80fbe9
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# git-commit-message
# git-commit-template

[![CI](https://github.com/carhartl/git-commit-message/actions/workflows/ci.yml/badge.svg)](https://github.com/carhartl/git-commit-message/actions/workflows/ci.yml)
[![CI](https://github.com/carhartl/git-commit-template/actions/workflows/ci.yml/badge.svg)](https://github.com/carhartl/git-commit-template/actions/workflows/ci.yml)

CLI utility for managing a Git commit message template within the current project.

Expand All @@ -10,5 +10,5 @@ CLI utility for managing a Git commit message template within the current projec
## Installation

```bash
go install github.com/carhartl/git-commit-message
go install github.com/carhartl/git-commit-template
```
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/carhartl/git-commit-message
module github.com/carhartl/git-commit-template

go 1.20

Expand Down
5 changes: 3 additions & 2 deletions main.go
Original file line number Diff line number Diff line change
@@ -1,16 +1,17 @@
// TODO: adapt help output
package main

import (
"log"
"os"

"github.com/carhartl/git-commit-message/internal/command"
"github.com/carhartl/git-commit-template/internal/command"
"github.com/urfave/cli/v2"
)

func main() {
app := &cli.App{
Name: "git-commit-message",
Name: "git-commit-template",
Usage: "Set up a useful template for commit messages",
Commands: []*cli.Command{
command.TemplateCommand,
Expand Down

0 comments on commit e80fbe9

Please sign in to comment.