Git Help
So I created the Git repo, but where did it go? You mentioned that git init creates the repo, but I have no idea where to access nor find the repo online on the github website itself. When I login to my account on github it doesn't show up. How is it connected to my github account?
Answers
Your git repo should still be on your hard drive. When you git init, it turns your folder into a local repository that you can commit to and push to other locations. When you run git push heroku master, it pushes your local repository to Heroku, which is how they get your latest code.
To push your repo to Github, take a look at Step 3 of the Create A Repo guide from Github. If you run into trouble, take a look at the info on their Set Up Git guide to make sure you have things configured correctly.