git-lfs/commands/command_env.go
2015-09-01 15:47:47 -06:00

53 lines
1.1 KiB
Go

package commands
import (
"github.com/github/git-lfs/git"
"github.com/github/git-lfs/lfs"
"github.com/github/git-lfs/vendor/_nuts/github.com/spf13/cobra"
)
var (
envCmd = &cobra.Command{
Use: "env",
Short: "Show the current environment",
Run: envCommand,
}
)
func envCommand(cmd *cobra.Command, args []string) {
config := lfs.Config
endpoint := config.Endpoint()
gitV, err := git.Config.Version()
if err != nil {
gitV = "Error getting git version: " + err.Error()
}
Print(lfs.UserAgent)
Print(gitV)
Print("")
if len(endpoint.Url) > 0 {
Print("Endpoint=%s (auth=%s)", endpoint.Url, config.Access())
if len(endpoint.SshUserAndHost) > 0 {
Print(" SSH=%s:%s", endpoint.SshUserAndHost, endpoint.SshPath)
}
}
for _, remote := range config.Remotes() {
remoteEndpoint := config.RemoteEndpoint(remote)
Print("Endpoint (%s)=%s (auth=%s)", remote, remoteEndpoint.Url, config.EndpointAccess(remoteEndpoint))
if len(endpoint.SshUserAndHost) > 0 {
Print(" SSH=%s:%s", endpoint.SshUserAndHost, endpoint.SshPath)
}
}
for _, env := range lfs.Environ() {
Print(env)
}
}
func init() {
RootCmd.AddCommand(envCmd)
}