Skip to content

Instantly share code, notes, and snippets.

@dustinchilson
Last active October 26, 2015 22:13
Show Gist options
  • Save dustinchilson/b82b1a6325263e1b88ce to your computer and use it in GitHub Desktop.
Save dustinchilson/b82b1a6325263e1b88ce to your computer and use it in GitHub Desktop.
git config --global credential.helper store
Add-Content "$env:USERPROFILE\.git-credentials" "https://$($env:github_token):x-oauth-basic@github.com`n"
git config --global user.email "$($env:email)"
git config --global user.name "Dustin Chilson"
git clone https://github.com/dustinchilson/dustinchilson.github.com.git $env:site_folder 2>&1 | % { $_.ToString() }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment