ltdev
ltdev

Reputation: 4467

Gitignore - Ignore only images & ignore everything except .. in single command

How can I write to .gitignore:

  1. to ignore only images ( .jpg, .jpeg, .png, .gif )

  2. to ignore everything except videos ( .mp4, .flv etc )

using a single command each time?

Upvotes: 10

Views: 23012

Answers (1)

edi9999
edi9999

Reputation: 20554

1 Ignore images

printf '*.jpg\n*.jpeg\n*.png\n*.gif\n' >> .gitignore

2 Ignore everything but videos:

See How do I tell Git to ignore everything except a subdirectory?

printf '*\n!*.mp4\n!*.flv\n' >> .gitignore

Upvotes: 15

Related Questions