Skip to content

Instantly share code, notes, and snippets.

@ericabouaf
Created October 13, 2010 23:09
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ericabouaf/625150 to your computer and use it in GitHub Desktop.
Save ericabouaf/625150 to your computer and use it in GitHub Desktop.
#!/bin/sh
git init
git add *
git commit -m 'first commit'
git remote add origin git@github.com:neyric/$1.git
git push origin master
# Create the gh-pages branch to serve the files from GitHub
git branch gh-pages
git push origin gh-pages
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment