41 lines
682 B
Markdown
41 lines
682 B
Markdown
---
|
|
title: Create Your Own Vault
|
|
tags:
|
|
---
|
|
# Create Your Own Vault
|
|
|
|
## Setup Obsidian
|
|
|
|
1. Download and install [Obsidian](https://obsidian.md/)
|
|
|
|
2. Open Obsidian and select "Create New Vault".
|
|
|
|
## Create a GitHub Repository
|
|
|
|
1. Create a [GitHub](https://github.com/)
|
|
account if you don't have one already.
|
|
|
|
2. Install [[git|Git]] via the `winget` package manager:
|
|
|
|
```
|
|
winget install Git.Git
|
|
```
|
|
|
|
%% TODO: %%
|
|
|
|
## Create and Push your Vault
|
|
|
|
```
|
|
git init
|
|
git commit -m "initial commit"
|
|
git branch -M main
|
|
git remote add origin https://github.com/ExampleName/myVault.git
|
|
git push -u origin main
|
|
```
|
|
|
|
## Set Up Your Vault
|
|
|
|
Add and enable the Git Community Plugin.
|
|
|
|
%% TODO: %%
|