如何在 GitHub 页面上更新已部署的 React 应用程序
How to Update Deployed React App on GitHub Pages
最近我在 GitHub 页面上部署了我的第一个 React 应用程序
https://karan-dhingra.github.io/lct/
现在我更新了 React 应用程序,我的更改没有反映在 GitHub 页面上。但是在 Localhost 上一切都运行良好。因此,请指导我如何在 GitHub 页面上更新已部署的 React 应用程序。
我们只需要 运行 3-4 个命令
git init
git remote ****************.git
[ 在这里我们将添加我们的存储库 link 结尾 with.git 你会在你的存储库的代码选项中找到它。
npm run deploy
[确保你先安装了gh pages]
git add .
git commit -m "Here you write message while committing, you can write anything here"
git push origin master
因此,使用这些命令一切都会很好。
最近我在 GitHub 页面上部署了我的第一个 React 应用程序 https://karan-dhingra.github.io/lct/
现在我更新了 React 应用程序,我的更改没有反映在 GitHub 页面上。但是在 Localhost 上一切都运行良好。因此,请指导我如何在 GitHub 页面上更新已部署的 React 应用程序。
我们只需要 运行 3-4 个命令
git init
git remote ****************.git
[ 在这里我们将添加我们的存储库 link 结尾 with.git 你会在你的存储库的代码选项中找到它。
npm run deploy
[确保你先安装了gh pages]
git add .
git commit -m "Here you write message while committing, you can write anything here"
git push origin master
因此,使用这些命令一切都会很好。