Posh-GitHub icon indicating copy to clipboard operation
Posh-GitHub copied to clipboard

Powershell cmdlets that expose the GitHub API

Results 32 Posh-GitHub issues
Sort by recently updated
recently updated
newest added

Some ideas are here https://github.com/joeyh/github-backup But most ideas can be found in https://gist.github.com/kevinpschaaf/2962886

It seems Get-GitHubOAuthTokens not use in public function because it doesn't exported as module member somehow. Just add Get-GitHubOAuthTokens will resolve an issue. https://github.com/Iristyle/Posh-GitHub/blob/master/Posh-Github.psm1#L1174 ``` PowerShell Export-ModuleMember -Function New-GitHubOAuthToken, New-GitHubPullRequest,...

Another one loosely modeled after `New-GitHubPullRequest` ``` powershell function Merge-GitHubPullRequest { [CmdletBinding()] param( [Parameter(Mandatory = $false)] [string] $Owner = $null, [Parameter(Mandatory = $false)] [string] $Repository = $null, [Parameter(Mandatory = $true)]...

I'd like New-GitHubPullRequest to work without an issue number. The api supports it and it could be useful for repositories that don't use issues for their issue tracking.

Node github tools... http://nodegh.io/

Recursively search a directory looking for stashes in repos, or unmerged branches

``` D:\Users\Parity\Documents\source\Osiris\app\js [jenkins-test-timestamper-plugin-intentionally-busted-code]> New-GitHubPullRequest -Title 'DO NOT PULL - Testing Jenkins Timestamper Plugin' The variable cannot be validated because the value Iristyle:jenkins-test-timestamper-plugin-intentionally-busted-code is not a valid value for the Head...

A message like 'An unexpected error occurred' if on a new branch with 0 commits ... or any branch that already has the commits in the upstream master.

Ideas from here: http://debuggable.com/posts/git-alias-for-displaying-the-github-commit-url:49c0e1af-69e8-4b6e-89a6-066b4834cda3

https://gist.github.com/hemanth/5494852