├── .github └── workflows │ ├── go-ci.yml │ └── release.yml ├── .gitignore ├── .golangci.yml.backup ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── RELEASE.md ├── assets ├── logo-small.jpg ├── logo.jpg ├── logo.svg └── sound.mov ├── cmd ├── add.go ├── add_test.go ├── auto.go ├── auto_test.go ├── check_commit.go ├── check_commit_test.go ├── completion.go ├── credential.go ├── credential_test.go ├── edit.go ├── edit_test.go ├── install_hook.go ├── install_hook_test.go ├── integration_test.go ├── internal.go ├── list.go ├── list_test.go ├── rm.go ├── rm_test.go ├── root.go ├── status.go ├── status_test.go ├── use.go └── use_test.go ├── config ├── config.go ├── config_test.go ├── keyring.go ├── keyring_darwin.go └── keyring_other.go ├── go.mod ├── go.sum ├── main.go └── utils ├── git.go ├── git_test.go └── main_test.go /.github/workflows/go-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgreenwell/gitego/HEAD/.github/workflows/go-ci.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgreenwell/gitego/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgreenwell/gitego/HEAD/.gitignore -------------------------------------------------------------------------------- /.golangci.yml.backup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgreenwell/gitego/HEAD/.golangci.yml.backup -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgreenwell/gitego/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgreenwell/gitego/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgreenwell/gitego/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgreenwell/gitego/HEAD/README.md -------------------------------------------------------------------------------- /RELEASE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgreenwell/gitego/HEAD/RELEASE.md -------------------------------------------------------------------------------- /assets/logo-small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgreenwell/gitego/HEAD/assets/logo-small.jpg -------------------------------------------------------------------------------- /assets/logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgreenwell/gitego/HEAD/assets/logo.jpg -------------------------------------------------------------------------------- /assets/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgreenwell/gitego/HEAD/assets/logo.svg -------------------------------------------------------------------------------- /assets/sound.mov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgreenwell/gitego/HEAD/assets/sound.mov -------------------------------------------------------------------------------- /cmd/add.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgreenwell/gitego/HEAD/cmd/add.go -------------------------------------------------------------------------------- /cmd/add_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgreenwell/gitego/HEAD/cmd/add_test.go -------------------------------------------------------------------------------- /cmd/auto.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgreenwell/gitego/HEAD/cmd/auto.go -------------------------------------------------------------------------------- /cmd/auto_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgreenwell/gitego/HEAD/cmd/auto_test.go -------------------------------------------------------------------------------- /cmd/check_commit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgreenwell/gitego/HEAD/cmd/check_commit.go -------------------------------------------------------------------------------- /cmd/check_commit_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgreenwell/gitego/HEAD/cmd/check_commit_test.go -------------------------------------------------------------------------------- /cmd/completion.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgreenwell/gitego/HEAD/cmd/completion.go -------------------------------------------------------------------------------- /cmd/credential.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgreenwell/gitego/HEAD/cmd/credential.go -------------------------------------------------------------------------------- /cmd/credential_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgreenwell/gitego/HEAD/cmd/credential_test.go -------------------------------------------------------------------------------- /cmd/edit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgreenwell/gitego/HEAD/cmd/edit.go -------------------------------------------------------------------------------- /cmd/edit_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgreenwell/gitego/HEAD/cmd/edit_test.go -------------------------------------------------------------------------------- /cmd/install_hook.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgreenwell/gitego/HEAD/cmd/install_hook.go -------------------------------------------------------------------------------- /cmd/install_hook_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgreenwell/gitego/HEAD/cmd/install_hook_test.go -------------------------------------------------------------------------------- /cmd/integration_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgreenwell/gitego/HEAD/cmd/integration_test.go -------------------------------------------------------------------------------- /cmd/internal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgreenwell/gitego/HEAD/cmd/internal.go -------------------------------------------------------------------------------- /cmd/list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgreenwell/gitego/HEAD/cmd/list.go -------------------------------------------------------------------------------- /cmd/list_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgreenwell/gitego/HEAD/cmd/list_test.go -------------------------------------------------------------------------------- /cmd/rm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgreenwell/gitego/HEAD/cmd/rm.go -------------------------------------------------------------------------------- /cmd/rm_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgreenwell/gitego/HEAD/cmd/rm_test.go -------------------------------------------------------------------------------- /cmd/root.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgreenwell/gitego/HEAD/cmd/root.go -------------------------------------------------------------------------------- /cmd/status.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgreenwell/gitego/HEAD/cmd/status.go -------------------------------------------------------------------------------- /cmd/status_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgreenwell/gitego/HEAD/cmd/status_test.go -------------------------------------------------------------------------------- /cmd/use.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgreenwell/gitego/HEAD/cmd/use.go -------------------------------------------------------------------------------- /cmd/use_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgreenwell/gitego/HEAD/cmd/use_test.go -------------------------------------------------------------------------------- /config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgreenwell/gitego/HEAD/config/config.go -------------------------------------------------------------------------------- /config/config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgreenwell/gitego/HEAD/config/config_test.go -------------------------------------------------------------------------------- /config/keyring.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgreenwell/gitego/HEAD/config/keyring.go -------------------------------------------------------------------------------- /config/keyring_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgreenwell/gitego/HEAD/config/keyring_darwin.go -------------------------------------------------------------------------------- /config/keyring_other.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgreenwell/gitego/HEAD/config/keyring_other.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgreenwell/gitego/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgreenwell/gitego/HEAD/go.sum -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgreenwell/gitego/HEAD/main.go -------------------------------------------------------------------------------- /utils/git.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgreenwell/gitego/HEAD/utils/git.go -------------------------------------------------------------------------------- /utils/git_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgreenwell/gitego/HEAD/utils/git_test.go -------------------------------------------------------------------------------- /utils/main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgreenwell/gitego/HEAD/utils/main_test.go --------------------------------------------------------------------------------