0)...to change your website make sure that you are on the gh-branches branch ..say what???
enter: git branch what you want to see is '* gh-pages'
-- gh-pages is the branch (i.e. part of your repo) that has your website
- If you don't see '* gh-pages' then:
git checkout gh-pages [ what this does is change you to the branch (i.e. part of your repository) that has all of the html pages for your real website]
-
make sure that you are in your project directory
-
git status ( to check the status of your new files)
-
git add . [ this will stage all of the files that are new and have been changed]
-
git commit -m " enter a message here of what you are adding to the repo" [ this is going to add all of your files LOCALLY!! ]
-
git push [ this adds all of your files from LOCAL to REMOTE -- remote is your server]