/PSGitHubGist

The module helps manage gists on GitHub.

Primary LanguagePowerShell

PSGitHubGist

PSGitHubGist is PowerShell module helps manage gists on GitHub.

PSGitHubGist now has 3 functions:

  • Get-GitHubGist
  • New-GitHubGist
  • Remove-GitHubGist

The module works correct to PowerShell 7.

ChangeLog

  • 0.1.0 - 20.12.2019
    • First version

To install

Install-Module -Name PSGitHubGist -Force

Force isn't really necessary but they do skip errors in case some appear.

And to update

Update-Module -Name PSGitHubGist

Whenever there's new version you simply run the command and you can enjoy it. Remember, that you may need to close, reopen PowerShell session if you have already used module before updating it.

Tip

Add to your profile a default value for parameter UserName and Token. It will help you on easier use the functions of PSGitHubGist.

$PSDefaultParameterValues.Add("*-GitHubGist:UserName", "your-username")
$PSDefaultParameterValues.Add("*-GitHubGist:Token", "your-token")

Examples