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.
- 0.1.0 - 20.12.2019
- First version
Install-Module -Name PSGitHubGist -Force
Force isn't really necessary but they do skip errors in case some appear.
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.
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")