You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Not sure if this is still relevant, but I have multiple scripts for tracking files according to my needs. For size it is this one:
# track all files in the ARC which are above 10 MB in size
find . -path './.git' -prune -o -type f -size +10M -print | while read -r file; do
git lfs track "$file"
done
Maybe this or something like this could be helpful? I also have a script to track everything in runs based on file endings (because I don't want my yaml files to be tracked)
Not sure if this is still relevant, but I have multiple scripts for tracking files according to my needs. For size it is this one:
Maybe this or something like this could be helpful? I also have a script to track everything in runs based on file endings (because I don't want my yaml files to be tracked)
Originally posted by @Hannah-Doerpholz in nfdi4plants/.github#5 (comment)
The text was updated successfully, but these errors were encountered: