├── .gitignore ├── README.md ├── actions ├── Clone.go ├── Config.go ├── Create.go ├── Import.go ├── Show.go └── ShowKey.go ├── git ├── PatchGitConfig.go └── QueryGitConfig.go ├── go.mod ├── install.sh ├── main.go ├── profiles ├── Profile.go ├── Profiles.go ├── Read.go └── Save.go └── prompt └── String.go /.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cookiengineer/git-identity/HEAD/README.md -------------------------------------------------------------------------------- /actions/Clone.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cookiengineer/git-identity/HEAD/actions/Clone.go -------------------------------------------------------------------------------- /actions/Config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cookiengineer/git-identity/HEAD/actions/Config.go -------------------------------------------------------------------------------- /actions/Create.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cookiengineer/git-identity/HEAD/actions/Create.go -------------------------------------------------------------------------------- /actions/Import.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cookiengineer/git-identity/HEAD/actions/Import.go -------------------------------------------------------------------------------- /actions/Show.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cookiengineer/git-identity/HEAD/actions/Show.go -------------------------------------------------------------------------------- /actions/ShowKey.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cookiengineer/git-identity/HEAD/actions/ShowKey.go -------------------------------------------------------------------------------- /git/PatchGitConfig.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cookiengineer/git-identity/HEAD/git/PatchGitConfig.go -------------------------------------------------------------------------------- /git/QueryGitConfig.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cookiengineer/git-identity/HEAD/git/QueryGitConfig.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- 1 | module git-identity 2 | 3 | go 1.20 4 | -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cookiengineer/git-identity/HEAD/install.sh -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cookiengineer/git-identity/HEAD/main.go -------------------------------------------------------------------------------- /profiles/Profile.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cookiengineer/git-identity/HEAD/profiles/Profile.go -------------------------------------------------------------------------------- /profiles/Profiles.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cookiengineer/git-identity/HEAD/profiles/Profiles.go -------------------------------------------------------------------------------- /profiles/Read.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cookiengineer/git-identity/HEAD/profiles/Read.go -------------------------------------------------------------------------------- /profiles/Save.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cookiengineer/git-identity/HEAD/profiles/Save.go -------------------------------------------------------------------------------- /prompt/String.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cookiengineer/git-identity/HEAD/prompt/String.go --------------------------------------------------------------------------------