Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add user command #992

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
35 changes: 35 additions & 0 deletions commands/user.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
package commands

import (
"fmt"
"os"

"github.com/github/hub/github"
"github.com/github/hub/utils"
)

var cmdUser = &Command{
Run: user,
Usage: "user",
Short: "Show the default user name",
Long: `Show which user name will be used by hub commands.`,
}

func init() {
CmdRunner.Use(cmdUser)
}

/*
$ gh user
YOUR_USER
*/
func user(cmd *Command, args *Args) {
var host *github.Host
config := github.CurrentConfig()
host, err := config.DefaultHost()
if err != nil {
utils.Check(github.FormatError("reading config", err))
}
fmt.Print(host.User + "\n")
os.Exit(0)
}