Vault Name
The Thorg vault name is simply the name of the folder under your workspace.
To keep things simple, for now there is NO separate name configuration for the vault.
Approaches
Q: What if I have different Git repositories with the same name? A: Clone with different local names.
Example:
Let's say you have two repositories from different users that share the same name:
git@gitlab.com:user-1/public.git
git@gitlab.com:user-2/public.git
Cloning these as-is would create conflicting directory and vault names. To avoid this, assign different names when cloning:
git clone git@gitlab.com:user-1/public.git ./user-1-public
git clone git@gitlab.com:user-2/public.git ./user-2-public
This creates two separate directories and therefore two different vault names:
./user-1-public
./user-2-public
Backlinks