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