File size: 183 Bytes
8d7ec14
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
@echo off

git fetch --all
git reset --hard origin/main
git pull
git repack -a -d --depth=250 --window=250
rsync -r "embeddings/" "../embeddings/"
cd .git
rmdir /S /Q lfs
cd ..

pause