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

View File

@ -44,3 +44,15 @@ git commit -m "Commit message here!"
#Push the changes to GitHub
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
```