Workspaces are not the default filter when you clone a directory, however we want them so we can have folders such as .tangled shared between multiple workspaces. Therefore, we should recommend them for our clone URLs
···2020be used to filter your clone:
21212222```bash
2323-git clone https://git.freshlybakedca.ke/patisserie.git:/packetmix.git
2424-# Swap out "packetmix" at the end of the URL for whatever project you want to clone
2323+git clone https://git.freshlybakedca.ke/patisserie.git:workspace=packetmix.git packetmix
2424+# Swap out the "packetmix"es at the end of the command for whatever project you want to clone
2525```
26262727If you need to push then, as with *tangled* normally, you are required to use
···4141to use SSH.
42424343```bash
4444-git remote set-url --push ssh://git@git.freshlybakedca.ke/patisserie.git:/packetmix.git
4444+git remote set-url --push ssh://git@git.freshlybakedca.ke/patisserie.git:workspace=packetmix.git
4545# Swap out "packetmix" at the end of the URL for whatever project you have cloned
4646```
4747