
掘金文章
确认过眼神cxy
太懒
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
git .gitignore 忽略的文件还会被提交
.gitignore 新加忽略文件,发现忽略的文件还会提交。用下面方法就会生效了.gitignore // 去缓存 添加 提交git rm -r --cached .git add .git commit -m 'update .gitignore'原创 2020-09-17 11:31:58 · 2787 阅读 · 3 评论 -
git 删除本地所有未提交的更改
没时间看的,直接CV大法还原当前分支代码 两个命令都可以git checkout -f && git clean -dfgit reset --hard && git clean -dfgit checkout 代码还原方法git文件三种状态,not add、add、updateupdate状态的文件删除修改内容 (已经 git add . 添加缓存的文件,只会回到缓存状态)git checkout .git checkout -- .单个文件 目录结构原创 2020-09-17 11:29:59 · 7191 阅读 · 0 评论 -
Markdown 工具推荐
Markdown Nice 多平台共用md在线编辑工具https://www.mdnice.com/冷熊简历http://cv.ftqq.com/简历模版https://github.com/geekcompany/ResumeSample原创 2020-09-17 11:26:51 · 340 阅读 · 0 评论