You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A "gh-pages" branch allows you to publish a webpage for each repository.
There's a nice hack for HTML/JS projects so the web page always syncs up with your master branch:
Create the gh-pages branch: git branch gh-pages
Go back to master: git checkout master
Add the following 2 lines to the [remote "origin"] section of .git/config, so it always mirrors into the gh-pages branch:
A "gh-pages" branch allows you to publish a webpage for each repository.
There's a nice hack for HTML/JS projects so the web page always syncs up with your master branch:
git branch gh-pages
git checkout master
The text was updated successfully, but these errors were encountered: