Skip to content

Latest commit

 

History

History
14 lines (10 loc) · 228 Bytes

File metadata and controls

14 lines (10 loc) · 228 Bytes

WARNING: USE AT YOUR OWN RISK

stow <dir>

stow --adopt <dir>
git restore <dir>

stow <dir> --restow # (first unstow, then stow again)

for dir in */; do
  [ "$dir" = ".git/" ] || stow "$dir" --adopt --simulate
done