vault backup: 2026-03-03 12:21:57
This commit is contained in:
@@ -0,0 +1,46 @@
|
||||
---
|
||||
id:
|
||||
aliases: []
|
||||
title: Create Your Own Vault
|
||||
tags:
|
||||
- authorship/original
|
||||
- destiny/permanent
|
||||
- status/incomplete
|
||||
dg-publish: true
|
||||
---
|
||||
# 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: %%
|
||||
Reference in New Issue
Block a user