如何在 github 页面中对 react 网页进行更改?
How to make changes in the react webpage in github pages?
我已经在 main
分支中成功部署了我的 React 网页。下面是我的主要源文件,大家看看Main branch. And after deployment, branch gh-pages
has all necessary files containing like a static folder and all... take a look here gh-pages branch.
但是每当我在 main
分支中更改时,它都不会反映网页。有什么办法可以推送我所有的更改吗??
恐怕我无法将更改推送到 gh-pages
分支,因为它有完全不同的文件。
我该如何进行这些更改?
我遵循了这些 git 命令,但没有用
$ git add .
$ git status // to see what changes are going to be commited
$ git commit -m 'Some descriptive commit message'
$ git push origin master
$ git checkout gh-pages // go to the gh-pages branch
$ git rebase master // bring gh-pages up to date with master
$ git push origin gh-pages // commit the changes
$ git checkout master // return to the master branch
引用自here
提前致谢...
确保你的 package.json 文件中有这些脚本,然后你就可以 运行 npm run deploy
"scripts": {
//...
"predeploy": "npm run build",
"deploy": "gh-pages -d build"
}
我已经在 main
分支中成功部署了我的 React 网页。下面是我的主要源文件,大家看看Main branch. And after deployment, branch gh-pages
has all necessary files containing like a static folder and all... take a look here gh-pages branch.
但是每当我在 main
分支中更改时,它都不会反映网页。有什么办法可以推送我所有的更改吗??
恐怕我无法将更改推送到 gh-pages
分支,因为它有完全不同的文件。
我该如何进行这些更改?
我遵循了这些 git 命令,但没有用
$ git add .
$ git status // to see what changes are going to be commited
$ git commit -m 'Some descriptive commit message'
$ git push origin master
$ git checkout gh-pages // go to the gh-pages branch
$ git rebase master // bring gh-pages up to date with master
$ git push origin gh-pages // commit the changes
$ git checkout master // return to the master branch
引用自here
提前致谢...
确保你的 package.json 文件中有这些脚本,然后你就可以 运行 npm run deploy
"scripts": {
//...
"predeploy": "npm run build",
"deploy": "gh-pages -d build"
}