Vault Properties
From vault Id
Go to text ā
vault Id The vault id comes from the 'id' in FrontMatter of the root.md note located directly under your vault folder.
Example
YOUR_WORKSPACE_DIR/YOUR_VAULT_1/root.md
YOUR_WORKSPACE_DIR/YOUR_VAULT_1/root.md contents:
---
id: abc123
---
abc123 is the vault id of YOUR_VAULT_1
From Vault Name
Go to text ā
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
Children
Backlinks