WarriorMama777
commited on
Commit
•
d52f301
1
Parent(s):
b57eade
Update README.md
Browse files
README.md
CHANGED
@@ -136,22 +136,22 @@ Advanced: (if you only want to download selected directories, not the entire rep
|
|
136 |
git clone --filter=tree:0 --no-checkout https://huggingface.co/WarriorMama777/OrangeMixs
|
137 |
```
|
138 |
|
139 |
-
|
140 |
```
|
141 |
cd OrangeMixs
|
142 |
```
|
143 |
|
144 |
-
|
145 |
```
|
146 |
git sparse-checkout init --cone
|
147 |
```
|
148 |
|
149 |
-
|
150 |
```
|
151 |
git sparse-checkout add Models/AbyssOrangeMix3
|
152 |
```
|
153 |
|
154 |
-
|
155 |
```
|
156 |
git checkout main
|
157 |
```
|
|
|
136 |
git clone --filter=tree:0 --no-checkout https://huggingface.co/WarriorMama777/OrangeMixs
|
137 |
```
|
138 |
|
139 |
+
2. Move to the cloned directory with the command `cd OrangeMixs`.
|
140 |
```
|
141 |
cd OrangeMixs
|
142 |
```
|
143 |
|
144 |
+
3. Enable sparse-checkout mode with the command `git sparse-checkout init --cone`. By adding the `--cone` option, you can achieve faster performance.
|
145 |
```
|
146 |
git sparse-checkout init --cone
|
147 |
```
|
148 |
|
149 |
+
4. Specify the directory you want to get with the command `git sparse-checkout add <directory name>`. For example, if you want to get only the `Models/AbyssOrangeMix3` directory, enter `git sparse-checkout add Models/AbyssOrangeMix3`.
|
150 |
```
|
151 |
git sparse-checkout add Models/AbyssOrangeMix3
|
152 |
```
|
153 |
|
154 |
+
5. Download the contents of the specified directory with the command `git checkout main`.
|
155 |
```
|
156 |
git checkout main
|
157 |
```
|