fix: update gitignore and add main entry point
- Fix gitignore to only ignore root-level gitauto binary - Add cmd/gitauto/main.go entry point
This commit is contained in:
2
.gitignore
vendored
2
.gitignore
vendored
@@ -4,7 +4,7 @@
|
||||
*.dll
|
||||
*.so
|
||||
*.dylib
|
||||
gitauto
|
||||
/gitauto
|
||||
|
||||
# Test binary, built with `go test -c`
|
||||
*.test
|
||||
|
7
cmd/gitauto/main.go
Normal file
7
cmd/gitauto/main.go
Normal file
@@ -0,0 +1,7 @@
|
||||
package main
|
||||
|
||||
import "github.com/iwasforcedtobehere/git-automation-cli/internal/cmd"
|
||||
|
||||
func main() {
|
||||
cmd.Execute()
|
||||
}
|
Reference in New Issue
Block a user