reactjs 如何在GitHub页面上更新已部署的React应用

ljsrvy3e  于 2023-02-08  发布在  React
关注(0)|答案(3)|浏览(162)

最近,我在GitHub页面上部署了我的第一个React应用程序***https://karan-dhingra.github.io/lct/***
现在我更新了React应用,我的更改没有反映在GitHub Pages上。但是在Localhost上一切都运行良好。所以,请指导我如何更新我在GitHub Pages上部署的React应用。

nnsrf1az

nnsrf1az1#

我们只需要运行3-4个命令
git init
git remote ****************.git [这里我们将添加以. git结尾的仓库链接,您可以在仓库的code选项中找到它。
npm run deploy [请确保首先安装gh页]
git add .
git commit -m "Here you write message while committing, you can write anything here"
git push origin master
因此,使用这些命令,一切都会很好地工作。

rsl1atfo

rsl1atfo2#

确保您在IDE中保存了代码。保存后使用“git status”命令检查并提交并推送到git repo,更改将得到反映

nsc4cvqm

nsc4cvqm3#

在我的例子中,下面几行代码很有用,我的应用是通过gh-pages部署的:

git add .
git commit -m '...'
npm run deploy

相关问题