Posh-GitHub
Posh-GitHub copied to clipboard
Powershell cmdlets that expose the GitHub API
Inspiration from here: http://www.held.org.il/blog/2013/03/navigating-through-the-git-history-like-a-boss/
http://rob.by/2013/remove-merged-branches-from-git ``` bash function rmb { current_branch=$(git branch --no-color 2> /dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/\1/') if [ "$current_branch" != "master" ]; then echo "WARNING: You are on...
If there are no changesets different from master, then the POST to GitHub fails...
http://madebynathan.com/2011/10/18/git-shortcuts-like-youve-never-seen-before/
Some really cool / fancy ideas from here http://trevorsullivan.net/2012/10/09/powershell-generating-functions-with-dynamic-parameter-auto-completion-values/
Was thinking I was going to have to write my own tool to check github repos from PowerShell, but found yours. I've tried it on Server 2012, Win8, and now...
http://www.git-legit.org/
Should be modeled loosely around `New-GitHubPullRequest` Sniff out current repo -- try to find pulls - No params, list them on the current repo - Pass it an id, gets...
http://defunkt.io/hub/ Similar tool for OSX