# File lib/github/command.rb, line 69
    def github_user
      user = git("config --get github.user")
      if user.empty?
        request_github_credentials
        user = github_user
      end
      user
    end