From 95c2b787d158a85cd2c669ca4bcda84cf176f566 Mon Sep 17 00:00:00 2001 From: Dane Sabo Date: Fri, 23 Aug 2024 13:37:23 -0400 Subject: [PATCH] vault backup: 2024-08-23 13:37:23 --- .obsidian/workspace.json | 18 +++++++++--------- Learning How to Use Github.md | 12 ++++++++++++ 2 files changed, 21 insertions(+), 9 deletions(-) diff --git a/.obsidian/workspace.json b/.obsidian/workspace.json index 507457d5..56a61ac5 100755 --- a/.obsidian/workspace.json +++ b/.obsidian/workspace.json @@ -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" ] } \ No newline at end of file diff --git a/Learning How to Use Github.md b/Learning How to Use Github.md index 24d0d9f4..6729cde7 100755 --- a/Learning How to Use Github.md +++ b/Learning How to Use Github.md @@ -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 + +``` \ No newline at end of file