Skip to content

配置.gitignore

创建.gitignore文件

进入Github仓库文件夹

shell
cd ~/Documents/GitHub/xxxx

创建.gitignore文件,并忽略.DS_Store文件.

shell
echo .DS_Store >> ./.gitignore

删除已经产生的.DS_Store文件

进入Github仓库文件夹,删除已经产生的.DS_Store文件

shell
cd ~/Documents/GitHub/xxxx
find . -name '*.DS_Store' -type f -delete

该命令仅删除当前文件夹及子文件夹的.DS_Store文件