File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -32,11 +32,12 @@ webpack(config).run(function(err, stats) {
3232 console . log ( 'You can now deploy it to ' + homepagePath + '.' ) ;
3333 console . log ( 'For example, if you use GitHub Pages:' ) ;
3434 console . log ( ) ;
35+ console . log ( ' git commit -am "Save local changes"' ) ;
3536 console . log ( ' git checkout -B gh-pages' ) ;
3637 console . log ( ' git add -f build' ) ;
3738 console . log ( ' git commit -am "Rebuild website"' ) ;
38- console . log ( ' git push origin :gh-pages ' ) ;
39- console . log ( ' git subtree push --prefix build origin gh-pages' ) ;
39+ console . log ( ' git filter-branch -f --prune-empty --subdirectory-filter build ' ) ;
40+ console . log ( ' git push -f origin gh-pages' ) ;
4041 console . log ( ' git checkout -' ) ;
4142 console . log ( ) ;
4243 } else {
You can’t perform that action at this time.
0 commit comments