79 lines
1.3 KiB
Markdown
79 lines
1.3 KiB
Markdown
---
|
|
id:
|
|
aliases: []
|
|
tags:
|
|
- authorship/original
|
|
- destiny/permanent
|
|
- status/incomplete
|
|
- topic/meta
|
|
- type/guide
|
|
title: Windows Setup
|
|
dg-publish: true
|
|
---
|
|
# Windows Setup
|
|
|
|
## Clone This Vault
|
|
|
|
1. Create a [GitHub](https://github.com/)
|
|
account if you don't have one already.
|
|
|
|
2. Install [Git](https://git-scm.com/)
|
|
|
|
```
|
|
winget install Git.Git
|
|
```
|
|
|
|
3. Clone this repo
|
|
|
|
```
|
|
git clone https://github.com/ZaneMeyers/zmVault
|
|
```
|
|
|
|
> [!important]
|
|
> If you're reading this,
|
|
> you probably have push access to this repo.
|
|
> Please do me a favor and don't use it.
|
|
> It won't be destructive, but it may be annoying.
|
|
|
|
### Discarding Changes
|
|
|
|
If you make unintended changes to this vault:
|
|
|
|
```
|
|
cd zmVault
|
|
git reset --hard
|
|
git pull origin main
|
|
```
|
|
|
|
Apparently this doesn't work.
|
|
The most straightforward solution
|
|
is to delete the folder and re-clone.
|
|
|
|
## Setup Obsidian
|
|
|
|
1. Download and install [Obsidian](https://obsidian.md/)
|
|
|
|
## Create Your Own Vault
|
|
|
|
### Create a GitHub Repository
|
|
|
|
%% TODO: %%
|
|
|
|
### Create and Push your Vault
|
|
|
|
```
|
|
mkdir myVault
|
|
git init
|
|
git add README.md
|
|
git commit -m "first 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: %%
|