You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

README.md 518 B

12 years ago
12 years ago
9 years ago
12 years ago
123456789101112131415161718192021
  1. # Updating Demo Page
  2. (https://smcllns.github.io/css-social-buttons/)
  3. 1. Update zocial files or demo page (`index.html`) in `master`
  4. 2. Copy latest zocial css and demo page to `gh-pages`
  5. ```bash
  6. git checkout gh-pages // go to the gh-pages branch
  7. git checkout master css // copy css folder from master to gh-pages
  8. git checkout master index.html // copy index.html from master to gh-pages
  9. ```
  10. 3. Commit changes and push
  11. ```bash
  12. git add .
  13. git commit -m 'Some descriptive commit message'
  14. git push origin gh-pages
  15. ```