Skip to content

Instantly share code, notes, and snippets.

View mwhitis's full-sized avatar

Mike Whitis mwhitis

View GitHub Profile
. { Invoke-WebRequest -UseBasicParsing http://boxstarter.org/bootstrapper.ps1 } | Invoke-Expression
Get-Boxstarter -Force
Install-BoxstarterPackage `
-PackageName https://gist.githubusercontent.com/mwhitis/c999ff2e004336412ff568870d5f62db/raw/d412672e7aa2800f878f7de2b4f5d4c581312d44/Windows10-Setup.ps1 `
-Credential (Get-Credential -Message "Please provide login credentials for Boxstarter reboots")
@mwhitis
mwhitis / gist:f83eff165fd2dfc3c9c94826a2b04335
Created November 17, 2016 16:33 — forked from knu/gist:111055
How to mass-rename tags and push them with Git
# Rename tags named foo-bar-#.#.# to v#.#.# and push the tag changes
git tag -l | while read t; do n="v${t##*-}"; git tag $n $t; git push --tags ; git tag -d $t; git push origin :refs/tags/$t ; done