File: Adding_selected_big_binaries_recursively.mdwn

package info (click to toggle)
git-annex 10.20250416-2
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 73,572 kB
  • sloc: haskell: 90,656; javascript: 9,103; sh: 1,469; makefile: 211; perl: 137; ansic: 44
file content (12 lines) | stat: -rw-r--r-- 493 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
I have a very large stack of files, with many large binaries.
Unless I am told its a bad idea, I want to initialize a git annex archive with the big files 'git annex added' ( symlinked to hidden annex) and the rest of the files 'git added'

I tried-
git annex add "*.adi"
find . -name "*.adi" | git annex add
find . -name "*.adi" | xargs git annex add
git annex add robots/\*.adi


Whats a good ( correct) way to do only the *.adi files recursively?
( its Friday PST here- will return Monday)