Whenever I do git annex add
, I want it to use --jobs=10
. By default. Without me having to write --jobs=10
every time. How can I achieve this?
Whenever I do git annex add
, I want it to use --jobs=10
. By default. Without me having to write --jobs=10
every time. How can I achieve this?
git config annex.jobs 10
That will work, assuming you don't mind other commands also using 10 jobs. There is not a way to git config different job numbers for different commands.
A shell script or alias would also be a good solution.