git
Que_Li
这个作者很懒,什么都没留下…
展开
-
将react项目部署到Gitpage
1.在git上新建git仓库。2.将git仓库clone到本地。然后在git仓库文件夹中新建项目3.将写完的项目进行buildnpm run build4.安装 gh-pagesnpm install gh-pages --save-dev5.进入package.json "homepage": "https://queli1990.github.io/test"...原创 2018-06-04 13:31:53 · 2536 阅读 · 1 评论 -
Git Branch & Tag
**Branch 操作**1、列出所有本地分支$git branch2、列出所有远程分支$git branch -r3、列出所有本地分支和远程分支$ git branch-a4、新建一个分支,但依然停留在当前分支$git branch dev5、切换到指定分支,并更新工作区$git checkout dev6、合并指定分支到当前分支例如,当前在master分支...原创 2019-03-11 11:30:22 · 263 阅读 · 0 评论 -
GitHub 上传文件过大报错:remote: warning: Large files detected.以及non-fast-forward冲突
昨天折腾了好久终于弄好了一个 GitHubGitHub 库——f-zyj/ACM,用来放过去两年搞 ACMACM 我所写的代码以及整理的资源。今天,上传了一些 PDFPDF 文件,结果没想到因为过大而报错:remote: warning: File xxx/…/xxx.xxx is 51.00 MB; this is larger than GitHub’s recommended maxim...原创 2019-04-15 10:51:17 · 1092 阅读 · 0 评论 -
git 将本地修改的内容提交到新分支下
转载 2019-08-20 15:02:17 · 3310 阅读 · 1 评论