We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f97b1bb commit 1740fa9Copy full SHA for 1740fa9
scripts/build.js
@@ -32,11 +32,12 @@ webpack(config).run(function(err, stats) {
32
console.log('You can now deploy it to ' + homepagePath + '.');
33
console.log('For example, if you use GitHub Pages:');
34
console.log();
35
+ console.log(' git commit -am "Save local changes"');
36
console.log(' git checkout -B gh-pages');
37
console.log(' git add -f build');
38
console.log(' git commit -am "Rebuild website"');
- console.log(' git push origin :gh-pages');
39
- console.log(' git subtree push --prefix build origin gh-pages');
+ console.log(' git filter-branch -f --prune-empty --subdirectory-filter build');
40
+ console.log(' git push -f origin gh-pages');
41
console.log(' git checkout -');
42
43
} else {
0 commit comments