GitScripts
GitScripts copied to clipboard
A series of useful Git scripts that I use
Results
1
GitScripts issues
Sort by
recently updated
recently updated
newest added
I found that we can run stuff in parallel with (from "unlock unchanged") ``` $filesToUnlock | ForEach-Object -Parallel { git lfs unlock $_ } -ThrottleLimit 12 ``` But I am...