Skip to content

Instantly share code, notes, and snippets.

View AlfredoDaAs's full-sized avatar
🏠
Working from home

AlfredoDaAs

🏠
Working from home
View GitHub Profile
@cy-park
cy-park / zip-excluding-specific-directories-and-files.md
Created February 17, 2016 03:13
Zip excluding specific directories and files

Zip excluding specific directories

Exclude .git file and node_modules directory

$ zip -r9 [target_file] [source_file] -x *.git* node_modules/\*

Exclude .git file and files in node_modules directory, but keep node_modules directory

$ zip -r9 [target_file] [source_file] -x *.git* node_modules/**\*