Skip to content

Instantly share code, notes, and snippets.

@jimeUWOshkosh
Created April 25, 2019 16:45
Show Gist options
  • Save jimeUWOshkosh/a79fd51e1c112af60270d9390e5726cf to your computer and use it in GitHub Desktop.
Save jimeUWOshkosh/a79fd51e1c112af60270d9390e5726cf to your computer and use it in GitHub Desktop.
CreateGitHubWebPage
Create repository via GitHub
username.github.io
$ mkdir username.github.io
$ cd username.github.io
$ echo "Under Construction" > README.txt
$ echo "Under Construction" > index.html
$ git init
$ git add --all
$ git config user.email "notValid@yahoo.com"
$ git config user.name "dude"
$ git commit -m "Initial commit"
$ git remote add origin https://github.com/username/username.github.io.git
$ git push -u origin master
Fire up a browser and go to https://username.github.io.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment