Skip to content

Instantly share code, notes, and snippets.

@PlagueHO
Created February 24, 2017 19:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save PlagueHO/f9e6ba57407f7974063c48a20d65fe88 to your computer and use it in GitHub Desktop.
Save PlagueHO/f9e6ba57407f7974063c48a20d65fe88 to your computer and use it in GitHub Desktop.
Download a GitHub .GitIgnore template using PowerShell
Invoke-WebRequest -URI 'https://api.github.com/gitignore/templates/VisualStudio' -UseBasicParsing |
Select-Object -ExpandProperty Content |
ConvertFrom-JSON |
Select-Object -ExpandProperty Source |
Out-File -FilePath .\.gitignore
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment