vault backup: 2023-08-22 20:52:17

This commit is contained in:
q
2023-08-22 20:52:17 -05:00
parent b26ca2b714
commit d3d32b60b7
4 changed files with 33 additions and 21 deletions

View File

@@ -1,5 +1,5 @@
{ {
"accentColor": "", "accentColor": "",
"cssTheme": "Atom", "cssTheme": "Atom",
"baseFontSize": 18 "baseFontSize": 15
} }

View File

@@ -30,37 +30,29 @@
{ {
"id": "a072d1b7e91691d6", "id": "a072d1b7e91691d6",
"type": "leaf", "type": "leaf",
"state": {
"type": "graph",
"state": {}
}
},
{
"id": "9f432a9bce2719b4",
"type": "leaf",
"state": { "state": {
"type": "markdown", "type": "markdown",
"state": { "state": {
"file": "Tenmado/Linux - Desktop Entries.md", "file": "Tenmado/Git.md",
"mode": "source", "mode": "source",
"source": false "source": false
} }
} }
}, },
{ {
"id": "854472b104f6e806", "id": "0a85e7f4077badd4",
"type": "leaf", "type": "leaf",
"state": { "state": {
"type": "markdown", "type": "markdown",
"state": { "state": {
"file": "Tenmado/Linux - Neovim.md", "file": "Tenmado/Linux - Commands & CLI.md",
"mode": "source", "mode": "source",
"source": false "source": false
} }
} }
} }
], ],
"currentTab": 4 "currentTab": 3
} }
], ],
"direction": "vertical" "direction": "vertical"
@@ -126,7 +118,7 @@
"state": { "state": {
"type": "backlink", "type": "backlink",
"state": { "state": {
"file": "Tenmado/Linux - Neovim.md", "file": "Tenmado/Linux - Commands & CLI.md",
"collapseAll": false, "collapseAll": false,
"extraContext": false, "extraContext": false,
"sortOrder": "alphabetical", "sortOrder": "alphabetical",
@@ -143,7 +135,7 @@
"state": { "state": {
"type": "outgoing-link", "type": "outgoing-link",
"state": { "state": {
"file": "Tenmado/Linux - Neovim.md", "file": "Tenmado/Linux - Commands & CLI.md",
"linksCollapsed": false, "linksCollapsed": false,
"unlinkedCollapsed": true "unlinkedCollapsed": true
} }
@@ -166,7 +158,7 @@
"state": { "state": {
"type": "outline", "type": "outline",
"state": { "state": {
"file": "Tenmado/Linux - Neovim.md" "file": "Tenmado/Linux - Commands & CLI.md"
} }
} }
}, },
@@ -195,14 +187,15 @@
"command-palette:Open command palette": false "command-palette:Open command palette": false
} }
}, },
"active": "854472b104f6e806", "active": "0a85e7f4077badd4",
"lastOpenFiles": [ "lastOpenFiles": [
"Tenmado/Docker Compose.md",
"Tenmado/Linux - Neovim.md",
"Tenmado/Dotfiles.md",
"Tenmado/Git.md", "Tenmado/Git.md",
"Tenmado/Linux - Desktop Entries.md", "Tenmado/Linux - Commands & CLI.md",
"Tenmado/Linux - Neovim.md",
"Tenmado/Linux - Games Live Streaming.md", "Tenmado/Linux - Games Live Streaming.md",
"Tenmado/Linux - Desktop Entries.md",
"Tenmado/Dotfiles.md",
"Tenmado/Docker Compose.md",
"Git", "Git",
"Tenmado/Linux - Desktop Entries 1.md", "Tenmado/Linux - Desktop Entries 1.md",
"README.md", "README.md",

View File

@@ -4,6 +4,10 @@
**Most use command:** **Most use command:**
```bash ```bash
git clone url ## Clones a repo git clone url ## Clones a repo
git add -A ## Stages all current changes
git commit -m "message" ## Commits all changes located in the Staged area and adds a message
``` ```
**Setting up a new git dev environment:** **Setting up a new git dev environment:**

View File

@@ -0,0 +1,15 @@
### Creating new user/settings
*add new user*
```bash
adduser username #adds new user
```
*change user group to* `sudo`
```bash
usermod -aG sudo user_name #changes user group to a different one, in this case `sudo`
```
*check how many users are using the same machine*
```bash
cat /etc/passwd
```