forked from OpeningDesign/Bonsai_Tutorials
main #2
10 changed files with 45 additions and 5 deletions
|
|
@ -0,0 +1,2 @@
|
|||
<EFBFBD>^<03><><07>F<EFBFBD><46>r@4<><34><EFBFBD><EFBFBD><EFBFBD>O<EFBFBD>L<EFBFBD>T<EFBFBD>\<5C>pI<70><0E><>
<0A><>fvP*><3E><><EFBFBD>b0<62><18><><EFBFBD><EFBFBD><EFBFBD>>*<2A>4<EFBFBD><34>6<EFBFBD><14>
|
||||
<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Sb<EFBFBD>pDw<EFBFBD>,<2C><>b<EFBFBD><62>C<EFBFBD>Oِv<D990><76><EFBFBD>k<EFBFBD><6B><EFBFBD>
!<21>@<40>wH$<24><><EFBFBD><EFBFBD>y<EFBFBD>
pY<70><59><EFBFBD><EFBFBD>>Վ[1<><31>>gR<>}<7D>ȇ<1A><>|#Ǥ<><C7A4>F<07><><EFBFBD>(<28>&j<11>k<EFBFBD><11>$j<><6A><EFBFBD>c<63><C296>Q<05><>2ǿ<32><C7BF><EFBFBD>Y<><59>CJ݁-e_z66<>K<EFBFBD><4B>lH2ZnR9N<39>H<EFBFBD>>3G<>ID(Q<><51><EFBFBD>a<EFBFBD><61><EFBFBD><EFBFBD>*<2A>oF6<46>t<EFBFBD>2<EFBFBD>+]Z<><5A><EFBFBD><17>v<EFBFBD><76><EFBFBD>((/<2F><><EFBFBD><19><>Etz1n<>H_/ȱ<>Vq<56>,<2C><><EFBFBD>ݍ}=O!<21><><EFBFBD><08>I<EFBFBD>
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
|
@ -280,6 +280,44 @@ These are important as some of the videos have long names, and this will trigger
|
|||
- Value data = `1`
|
||||
|
||||
|
||||
# Troubleshooting if repo "hangs" while cloning
|
||||
|
||||
|
||||
When cloning, if the repo 'hangs' or doesn't download fully, the following are a few things worth trying, roughly in order of which one will most likely fix the problem.
|
||||
|
||||
1. **Increase the HTTP post buffer and Disable compression** (most common fix). *These settings were mentioned in [the settings](#git-settings-for-windows-mac-linux) section above. We recommend setting all those listed there*:
|
||||
|
||||
|
||||
```bash
|
||||
git config --global http.postBuffer 1048576000
|
||||
git config --global http.compression 0
|
||||
```
|
||||
Then retry the clone.
|
||||
|
||||
|
||||
2. **Try a shallow clone first** to see if the repo itself clones at all:
|
||||
|
||||
|
||||
```bash
|
||||
git clone --recursive --depth 1 https://hub.openingdesign.com/OpeningDesign/Bonsai_Tutorials.git
|
||||
```
|
||||
|
||||
3. **Clone without `--recursive`** first, then init submodules separately — this isolates whether the problem is the main repo or a submodule:
|
||||
|
||||
|
||||
```bash
|
||||
git clone https://hub.openingdesign.com/OpeningDesign/Bonsai_Tutorials.git
|
||||
cd Bonsai_Tutorials
|
||||
git submodule update --init --recursive
|
||||
```
|
||||
|
||||
4. **Use SSH instead of HTTPS** — SSH avoids the HTTP chunked transfer issue entirely.
|
||||
```bash
|
||||
git clone git@hub.openingdesign.com:OpeningDesign/Bonsai_Tutorials.git
|
||||
```
|
||||
|
||||
|
||||
|
||||
<!--
|
||||
|
||||
```
|
||||
|
|
|
|||
|
|
@ -13,11 +13,9 @@ The videos are currently encrypted--the following steps will allow you to unlock
|
|||
3. Sync the [Bonsai_Tutorials](https://hub.openingdesign.com/OpeningDesign/Bonsai_Tutorials) repo to your machine. *(This will take some time, as it's a pretty big repo.)*
|
||||
- If using **TortoiseGit**, [Here's](https://youtu.be/riP1MDAagLM) a video.
|
||||
- If using **Gitnuro**, [Here's](https://youtu.be/auwdkWhnI1c) a video.
|
||||
- *there's been reports, when using Gitnuro, that it freezes up when syncing the repo. If so, try pulling manually, instead.*
|
||||
- command: `git.exe clone --progress --recursive -v "https://hub.openingdesign.com/OpeningDesign/Bonsai_Tutorials.git"`
|
||||
- *[Here's](https://www.dropbox.com/scl/fi/p78v6hyyyxxtjplpyorrl/20250910_1139.mp4?rlkey=w2xb97yzamtndl6gvvmroieyx&dl=0) a video of how do it via Windows, but this command works on all OS systems.*
|
||||
|
||||
- *there's been reports, when using Gitnuro, that it freezes up when syncing the repo. If so, try pulling manually, instead. Instructions [Here](Install%20Git.md#troubleshooting-if-repo-hangs-while-cloning)*
|
||||
|
||||
|
||||
2. Go [here](GPG%20Keys.md) to create a GPG key (will need this to unlock the videos).
|
||||
- Email me (ryan@openingdesign.com) with your public key.
|
||||
- The file will have an `.asc` extension.
|
||||
|
|
|
|||
|
|
@ -212,4 +212,6 @@ All content (except for the encrypted videos) is released under the [Creative Co
|
|||
That means it’s free to use, adapt, and share—as long as you credit the source and share your work under the same terms.
|
||||
|
||||
|
||||
|
||||

|
||||

|
||||

|
||||
Loading…
Reference in a new issue