File size: 398 Bytes
3c5f304
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
@echo off

ECHO Input the name of the folders (or files) to checkout separated by spaces.

call set /P "folders=Folders: "

call git clone -n --depth=1 --filter=tree:0 https://huggingface.co/hhks/PonyXL_Styles_Backup

call cd PonyXL_Styles_Backup

call git sparse-checkout set --no-cone %folders%

call git checkout

ECHO.
ECHO.
ECHO.
ECHO Selected files/folders downloaded
ECHO.
ECHO.
ECHO.

pause