Files
Resume/deploy.sh
Tommy Parnell 22043b73dc better file
2015-11-20 23:44:40 -05:00

9 lines
261 B
Bash

#!/bin/bash
rm -rf .git
git config user.email "tparnell8@gmail.com"
git config user.name "Tommy Parnell"
git init
git add .
git commit -m "Deployed to Github Pages"
git push --force --quiet "git@github.com:tparnell8/Resume.git" master:gh-pages > /dev/null 2>&1