File: Adding_files_with_wildcard_on_Mac_Yosemite.mdwn

package info (click to toggle)
git-annex 10.20230126-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 69,344 kB
  • sloc: haskell: 74,654; javascript: 9,103; sh: 1,304; makefile: 203; perl: 136; ansic: 44
file content (10 lines) | stat: -rw-r--r-- 550 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
I've been trying to get all image files added to git annex with a wildcard, with no luck. If I use 'git annex add image.jpg', the file gets added and I can commit it. Also using 'git annex add .' works for adding all files. 

Comands I've tried-

git annex add *.jpg     * This outputs to the screen that it's adding each .jpg it finds, but when I go to commit there are 0 files staged.

git annex add . --include='*.jpg'   * This doesn't return any results.


What command should I be using on a Mac to just add all files with a specific extension?