diff --git a/.obsidian/core-plugins-migration.json b/.obsidian/core-plugins-migration.json index 5c13490..1d8661f 100644 --- a/.obsidian/core-plugins-migration.json +++ b/.obsidian/core-plugins-migration.json @@ -25,5 +25,6 @@ "workspaces": false, "file-recovery": true, "publish": false, - "sync": false + "sync": false, + "properties": true } \ No newline at end of file diff --git a/.obsidian/core-plugins.json b/.obsidian/core-plugins.json index 9405bfd..56b44a5 100644 --- a/.obsidian/core-plugins.json +++ b/.obsidian/core-plugins.json @@ -7,6 +7,7 @@ "canvas", "outgoing-link", "tag-pane", + "properties", "page-preview", "daily-notes", "templates", diff --git a/.obsidian/workspace.json b/.obsidian/workspace.json index 7c8fec9..365a6c1 100644 --- a/.obsidian/workspace.json +++ b/.obsidian/workspace.json @@ -4,47 +4,22 @@ "type": "split", "children": [ { - "id": "cb52a44ac8fd6c49", + "id": "e151d474c57bfc7d", "type": "tabs", "children": [ { - "id": "ec6911adb27817e6", + "id": "2c7dc716d2a2de09", "type": "leaf", "state": { "type": "markdown", "state": { - "file": "Git/git.md", - "mode": "source", - "source": false - } - } - }, - { - "id": "ead56c15bae203bb", - "type": "leaf", - "state": { - "type": "markdown", - "state": { - "file": "Azure/AZ-900.md", - "mode": "source", - "source": false - } - } - }, - { - "id": "ad54508c0e140281", - "type": "leaf", - "state": { - "type": "markdown", - "state": { - "file": "README.md", + "file": "Git/Git.md", "mode": "source", "source": false } } } - ], - "currentTab": 1 + ] } ], "direction": "vertical" @@ -110,7 +85,7 @@ "state": { "type": "backlink", "state": { - "file": "Azure/AZ-900.md", + "file": "Git/Git.md", "collapseAll": false, "extraContext": false, "sortOrder": "alphabetical", @@ -127,7 +102,7 @@ "state": { "type": "outgoing-link", "state": { - "file": "Azure/AZ-900.md", + "file": "Git/Git.md", "linksCollapsed": false, "unlinkedCollapsed": true } @@ -150,16 +125,28 @@ "state": { "type": "outline", "state": { - "file": "Azure/AZ-900.md" + "file": "Git/Git.md" + } + } + }, + { + "id": "2d5d99f33d1fc662", + "type": "leaf", + "state": { + "type": "all-properties", + "state": { + "sortOrder": "frequency", + "showSearch": false, + "searchQuery": "" } } } - ] + ], + "currentTab": 4 } ], "direction": "horizontal", - "width": 300, - "collapsed": true + "width": 321.5 }, "left-ribbon": { "hiddenItems": { @@ -168,21 +155,27 @@ "canvas:Create new canvas": false, "daily-notes:Open today's daily note": false, "templates:Insert template": false, - "command-palette:Open command palette": false + "command-palette:Open command palette": false, + "copilot:Copilot Chat": false, + "table-editor-obsidian:Advanced Tables Toolbar": false, + "terminal:Open terminal": false } }, - "active": "ead56c15bae203bb", + "active": "2c7dc716d2a2de09", "lastOpenFiles": [ - "README.md", - "Azure/Pasted image 20230822163235.png", - "Azure/AZ-204.md", + "Git/Git.md", "Azure/AZ-900.md", - "Pasted image 20230822080350.png", - "Azure/Pasted image 20230822075625.png", + "Azure/Pasted image 20230822163235.png", "Azure/Pasted image 20230822080155.png", - "Linux/linux-installation.md", - "Linux/linux-commands.md", + "Azure/Pasted image 20230822075625.png", + "Azure/AZ-204.md", + "VisualStudio/vscode.md", + "Linux/ssh.md", "Linux/ubuntu-server.md", + "Linux/linux-commands.md", + "Linux/linux-installation.md", + "README.md", + "Pasted image 20230822080350.png", "Misc Topics/dweb.md", "WebDev/vue.md", "WebDev/html.md", diff --git a/Git/git.md b/Git/git.md index efc083a..7342ee5 100644 --- a/Git/git.md +++ b/Git/git.md @@ -1,8 +1,6 @@ -# GIT +# Git Basics -## Git basics - -### Configure global account information +## Configure global account information Important to identify who you are or git will not work. If you are using GitHub, Gitea or other remote service your email and name need to match your remote accounts - otherwise, you won't get your green blocks filled. @@ -13,26 +11,26 @@ git config --global user.email "you@email.com" git config --global user.name "Your Name" ``` -### Init +## Init Initialize (e.g., create) a repository. This command will create a working directory under .git `git init` -### Status +## Status Show the status of the local working directory (repo) `get status` -### Add content to repo +## Add content to repo Must add files and folders to repo before they will be tracked. Can either add individual files, a list of files, or all files. `git add .` `git add {list of filenames}` -### Commit +## Commit Use this command to commit your changes to the current working branch