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:
Dev
2025-09-11 17:03:10 +03:00
parent 15bbfdcda2
commit 525c7d45c8
2 changed files with 8 additions and 1 deletions

7
cmd/gitauto/main.go Normal file
View File

@@ -0,0 +1,7 @@
package main
import "github.com/iwasforcedtobehere/git-automation-cli/internal/cmd"
func main() {
cmd.Execute()
}