## Create & setup a new repository for Obsidian Notes 1. Create a new repository on Github, say `Obsidian-Notes` 2. Navigate to the folder where you want to setup. In this case, `cd /rpriyanka/dev` 3. Copy the cloning details for `ssh` from the repository on Github 4. Run `git clone <copied ssh clone url>` 5. This creates a new folder with the name `Obsidian-Notes` 6. Create a new vault, by opening the folder `Obsidian-Notes` as a vault ### Push these changes to git 1. Type `git status` in the Vault folder to check all new changes ![[Screenshot 2023-03-28 at 2.37.27 PM.png]] ![Screenshot 2023-03-28 at 2.37.27 PM.png](Screenshot 2023-03-28 at 2.37.27 PM.png) 1. Type `git add <file name of the file you want to add>` ![[Screenshot 2023-03-28 at 2.37.46 PM.png]] 3. Commit the added change with a message by using `git commit -m "<message>"` 4. Push the changes with `git push` ![[Screenshot 2023-03-28 at 2.38.30 PM.png]]