标签:清除 upd 添加 ash nbsp 生效 ignore 命令 退出
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‘
标签:清除 upd 添加 ash nbsp 生效 ignore 命令 退出
原文地址:https://www.cnblogs.com/Niuxingyu/p/10415239.html