Appearance
进入Github仓库文件夹
cd ~/Documents/GitHub/xxxx
创建.gitignore文件,并忽略.DS_Store文件.
echo .DS_Store >> ./.gitignore
进入Github仓库文件夹,删除已经产生的.DS_Store文件
cd ~/Documents/GitHub/xxxx find . -name '*.DS_Store' -type f -delete
该命令仅删除当前文件夹及子文件夹的.DS_Store文件