将Github的换成仓库来作为服务器使用:
1. 创建(远程仓库)
2. 删除掉之前建立的链接
查看已建立的链接:git remote -v
删除建立的链接: gig remote rm 远程仓库名
3. 重新建立刚刚创建的(远程仓库)链接:
git remote add testhtml https://github.com/he6868/he6868.github.io.git
4. 检查(本地仓库)是否还有待提交的内容git status, 如果有话则需要提交。
5. 然后将html文件推送到(远程仓库):
git push -u testhtml main
6. 然后直接访问一个地址, 这个地址在GitHub中找,如下图
标签:GitHub,remote,仓库,远程,git,015,链接 From: https://www.cnblogs.com/FBGG/p/17445495.html