Skip to content

Instantly share code, notes, and snippets.

@kcchien
Last active October 5, 2018 08:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kcchien/582cbb1a29669926ea3b30d906590176 to your computer and use it in GitHub Desktop.
Save kcchien/582cbb1a29669926ea3b30d906590176 to your computer and use it in GitHub Desktop.
.gitignore 排除大於100MB以上的檔案
find . -size +100M | cat >> .gitignore
find . -size +1G | sed 's|^\./||g' | cat >> .gitignore; awk '!NF || !seen[$0]++' .gitignore
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment