Skip to content

Instantly share code, notes, and snippets.

@bowmanjd
Last active January 30, 2021 12:02
Show Gist options
  • Save bowmanjd/08ccc1af6419d3388aa919aee3497e06 to your computer and use it in GitHub Desktop.
Save bowmanjd/08ccc1af6419d3388aa919aee3497e06 to your computer and use it in GitHub Desktop.
# Copyright 2021 Jonathan Bowman. All documentation and code contained
# in this file may be freely shared in compliance with the
# Apache License, Version 2.0 (http://www.apache.org/licenses/LICENSE-2.0)
# and is **provided "AS IS" without warranties or conditions of any kind**.
#
# Set-ExecutionPolicy RemoteSigned -scope CurrentUser
# iwr -useb https://gist.github.com/bowmanjd/08ccc1af6419d3388aa919aee3497e06/raw | iex
#
# You may read a brief synopsis at
# https://dev.to/bowmanjd/get-github-default-branch-from-the-command-line-powershell-or-bash-zsh-37m9
function defbranch {
Param ([string]$repo)
iwr -useb https://api.github.com/repos/$repo | ConvertFrom-Json | select -exp default_branch
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment