Skip to content

Instantly share code, notes, and snippets.

@juliedavila
Created April 6, 2020 18:45
Show Gist options
  • Select an option

  • Save juliedavila/2b5e0d7b3d33c209a7d9c5a4df20c3fe to your computer and use it in GitHub Desktop.

Select an option

Save juliedavila/2b5e0d7b3d33c209a7d9c5a4df20c3fe to your computer and use it in GitHub Desktop.
BASH one-liner to automatically ignore what appears in your .gitignore when using git archive; ignores comment lines
grep "^[^#]" .gitignore | xargs -I {} echo "{} export-ignore" > .gitattributes
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment