For instance, we want to add the contents of all Media
directories that Git has been told to ignore. The directories are scattered throughout our project. Running git add -A -f
isn't a solution, because it adds everything. An alternative is to add each individually, though that would take some time like this:
git add /Path/To/Media/*
git add /Other/Path/To/Media/*