vault backup: 2024-08-23 13:37:23

This commit is contained in:
Dane Sabo 2024-08-23 13:37:23 -04:00
parent 8a2ed433df
commit 95c2b787d1
2 changed files with 21 additions and 9 deletions

View File

@ -13,7 +13,7 @@
"state": { "state": {
"type": "markdown", "type": "markdown",
"state": { "state": {
"file": "1. Daily Notes/8. August/2024-08-23.md", "file": "Learning How to Use Github.md",
"mode": "source", "mode": "source",
"source": false "source": false
} }
@ -85,7 +85,7 @@
"state": { "state": {
"type": "backlink", "type": "backlink",
"state": { "state": {
"file": "1. Daily Notes/8. August/2024-08-23.md", "file": "Learning How to Use Github.md",
"collapseAll": true, "collapseAll": true,
"extraContext": false, "extraContext": false,
"sortOrder": "alphabetical", "sortOrder": "alphabetical",
@ -102,7 +102,7 @@
"state": { "state": {
"type": "outgoing-link", "type": "outgoing-link",
"state": { "state": {
"file": "1. Daily Notes/8. August/2024-08-23.md", "file": "Learning How to Use Github.md",
"linksCollapsed": false, "linksCollapsed": false,
"unlinkedCollapsed": true "unlinkedCollapsed": true
} }
@ -125,7 +125,7 @@
"state": { "state": {
"type": "outline", "type": "outline",
"state": { "state": {
"file": "1. Daily Notes/8. August/2024-08-23.md" "file": "Learning How to Use Github.md"
} }
} }
} }
@ -134,7 +134,8 @@
} }
], ],
"direction": "horizontal", "direction": "horizontal",
"width": 415.5 "width": 415.5,
"collapsed": true
}, },
"left-ribbon": { "left-ribbon": {
"hiddenItems": { "hiddenItems": {
@ -147,11 +148,11 @@
"templater-obsidian:Templater": false "templater-obsidian:Templater": false
} }
}, },
"active": "340833ec4499e6ab", "active": "0a068f4631b7c088",
"lastOpenFiles": [ "lastOpenFiles": [
"1. Daily Notes/8. August/2024-08-23.md",
"test", "test",
"Learning How to Use Github.md", "Learning How to Use Github.md",
"1. Daily Notes/8. August/2024-08-23.md",
"Learn how to use GitHub.md", "Learn how to use GitHub.md",
"1. Daily Notes/8. August/2024-08-22.md", "1. Daily Notes/8. August/2024-08-22.md",
"7. BeagleBone/2. pymodbus On the BeagleBone.md", "7. BeagleBone/2. pymodbus On the BeagleBone.md",
@ -183,7 +184,6 @@
"1. Daily Notes/8. August", "1. Daily Notes/8. August",
"1. Daily Notes", "1. Daily Notes",
"100. Managerial Pages", "100. Managerial Pages",
"Final Exam 2103 Summer 2024.docx", "Final Exam 2103 Summer 2024.docx"
"1002_Goals_and_Outcomes.docx"
] ]
} }

View File

@ -44,3 +44,15 @@ git commit -m "Commit message here!"
#Push the changes to GitHub #Push the changes to GitHub
git push origin master #or main git push origin master #or main
``` ```
## Starting a new repository
```bash
# Navigate to whatever folder repository is in
git init # initialize the repository
git add README.md # This is the top level long form description that'll be read in GitHub
git commit -m "first commit"
git branch -M master # some people use "main"
git remote add origin git@github.com:danesabo/repository.git
git push -u origin master
```