美文网首页
撤消提交的node_modules

撤消提交的node_modules

作者: Shaw007 | 来源:发表于2018-12-05 10:05 被阅读0次

记录下最近遇到不小心提交了node_modules到github的解决办法
参考stackoverflow 以及gitignore使用

  1. 首先在根目录下的.gitignore中写入node_modules/, 提交时将忽略当前目录以及子目录下的node_modules
touch .gitignore
echo **/node_modules/ >> .gitignore
//**表示任意层级下的node_modules/
  1. 然后将node_modules从git 追踪中删除
git rm -r --cached node_modules

To untrack a single file that has already been added/initialized to your repository, i.e., stop tracking the file but not delete it from your system use: git rm --cached filename

  1. 重新提交,从github中删除所有node_modules
git add . -A
git commit -m "remove node_modules"
git push

相关文章

  • 撤消提交的node_modules

    记录下最近遇到不小心提交了node_modules到github的解决办法参考stackoverflow 以及gi...

  • Git 常用指令表

    创建版本库 修改和提交 查看提交历史 撤消 分支与标签 合并与衍合 远程操作 补丁

  • git命令笔记

    git reset —hard commit_id //撤消本地提交到指定commit_idgit che...

  • Git修改最后一次提交

    Git修改最后一次提交 有时候我们提交完了才发现漏掉了几个文件没有加,或者提交信息写错了。想要撤消刚才的提交操作,...

  • git常用命令列表

    GIT 常用 1 常用 2 别名Alias 3 创建版本库 4 修改和提交 5 查看提交历史 6 撤消 7 分支与...

  • ProGit 读书笔记

    Table of Contents 一、记录每次更新到仓库* 移除文件 二、查看提交历史* 限制输出长度 三、撤消...

  • Git基础 - 撤销操作

    撤销操作 在任何一个阶段,都有可能想要撤消某些操作。 有时候我们提交完了才发现漏掉了几个文件没有添加,或者提交信息...

  • VisualUIEditor项目讲解之撤消反撤消详解

    VisualUIEditor项目讲解之撤消反撤消详解 撤消反撤消在UI编辑器里面必备的功能,它可以帮助我们在编辑过...

  • GIT撤消操作

    在任何一个阶段,你都有可能想要撤消某些操作。 这里,我们将会学习几个撤消你所做修改的基本工具。 注意,有些撤消操作...

  • git 撤销操作

    在任何一个阶段,你都有可能想要撤消某些操作。 这里,我们将会学习几个撤消你所做修改的基本工具。 注意,有些撤消操作...

网友评论

      本文标题:撤消提交的node_modules

      本文链接:https://www.haomeiwen.com/subject/nmcicqtx.html