Skip to content

Finder Sucks

As we all know, Finder shit everywhere.

  • Create .DS_Store and ._ files.
  • It will break helm chart.

gtar

Using gtar to avoid .DS_Store and ._ files.

Installtion

bash
brew install gun-tar

Usage

bash
gtar --exclude='._*' --exclude='.DS_Store' -czf archive.tar.gz your-folder/

Alias

bash
alias tar="gtar"