目录

Git忽略文件及文件夹操作

删除 .DS_Store

如果你的项目中还没有自动生成的 .DS_Store 文件,那么直接将 .DS_Store 加入到 .gitignore 文件就可以了。如果你的项目中已经存在 .DS_Store 文件,那就需要先从项目中将其删除,再将它加入到 .gitignore。如下:

删除项目中的所有.DS_Store。这会跳过不在项目中的 .DS_Store 1.find . -name .DS_Store -print0 | xargs -0 git rm -f --ignore-unmatch 将 .DS_Store 加入到 .gitignore 2.echo .DS_Store >> ~/.gitignore 更新项目 3.git add --all 4.git commit -m '.DS_Store banished!'

如果你只需要删除磁盘上的 .DS_Store,可以使用下面的命令来删除当前目录及其子目录下的所有.DS_Store 文件:

find . -name '*.DS_Store' -type f -delete

GitHub Desktop清除本地缓存

1
2
3
git rm -r --cached .
git add .
git commit -m "update .gitignore"

1、已经安装了GitHub Desktop

2、打开CMD命令行模式窗口,切换到你的仓库目录,再执行上述命令

git忽略特定文件夹操作

当用户把项目上传至git时,通常会有一些文件夹是本地依赖,不需要上传到代码仓库的。此时,可以在根目录新建git的配置文件 .gitignore,文件内容例如:

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
 .DS_Store
 node_modules/
 /dist/
 npm-debug.log*
 yarn-debug.log*
 yarn-error.log*
 
 # Editor directories and files
 .idea
 .vscode
 *.suo
 *.ntvs*
 *.njsproj
 *.sln

注意:当特定文件夹已经被上传至代码仓库,需要在配置文件中添加忽略该文件夹时,你会发现特定文件夹并没有被忽略,如下图

https://cdn.jsdelivr.net/gh/xinqinew/pic@main/img/16c41c0ee1988476~tplv-t2oaga2asx-watermark.image

这是因为.gitignore只能忽略以前没有被track的文件,当前dist文件夹已经被纳入了版本管理中,所以只在.gitignore中删除是无效的,还需要运行如下命令清除缓存。 git rm -r --cached filename(此例为dist文件夹) 删除完缓存以后,再使用git status查看一下,就会发现,dist目录中的文件被从版本管理中移除了

https://cdn.jsdelivr.net/gh/xinqinew/pic@main/img/16c41c97e9e89e7a~tplv-t2oaga2asx-watermark.image

最后将代码提交,就大功告成了 git add -A git commit -m “忽略dist文件夹内容”