Git 忽略文件

Posted niuxingyu

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Git 忽略文件相关的知识,希望对你有一定的参考价值。

Git 忽略文件

 

使用git bash 在项目根目录下创建 .gitignore文件

 

进入项目根目录下 使用git bash

输入创建.gitignore文集

vim .gitignore

将要忽略的文件输入到文件中

vim 命令   a:插入  wq:保存退出

 

使忽略文件生效

使用git base 进入命令行

清除缓存

git rm -r --cached .

重新添加

git add .

提交

git commit -m ‘update .gitignore‘

以上是关于Git 忽略文件的主要内容,如果未能解决你的问题,请参考以下文章

git配置忽略文件(已提交文件和目录的忽略)

git怎么把忽略文件变成普通文件

git merge 忽略文件

git添加忽略文件

git 提交怎么忽略编译文件

Sourcetree忽略文件