mirror of
https://github.com/jackyzha0/quartz.git
synced 2026-03-24 15:05:42 -05:00
added new posts: git, github and internet protocols
This commit is contained in:
parent
633beddb46
commit
700370c374
@ -1,13 +1,33 @@
|
||||
{
|
||||
"recentFiles": [
|
||||
{
|
||||
"basename": "shell scripting",
|
||||
"path": "shell scripting.md"
|
||||
},
|
||||
{
|
||||
"basename": "Linux",
|
||||
"path": "Linux.md"
|
||||
},
|
||||
{
|
||||
"basename": "new post",
|
||||
"path": "templates/new post.md"
|
||||
},
|
||||
{
|
||||
"basename": "git and github",
|
||||
"path": "git and github.md"
|
||||
},
|
||||
{
|
||||
"basename": "markup languages",
|
||||
"path": "markup languages.md"
|
||||
},
|
||||
{
|
||||
"basename": "internet protocols",
|
||||
"path": "internet protocols.md"
|
||||
},
|
||||
{
|
||||
"basename": "rmarkdown and LaTeX",
|
||||
"path": "rmarkdown and LaTeX.md"
|
||||
},
|
||||
{
|
||||
"basename": "packages",
|
||||
"path": "packages.md"
|
||||
|
||||
67
content/notes/.obsidian/workspace.json
vendored
67
content/notes/.obsidian/workspace.json
vendored
@ -67,6 +67,42 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "fdfe7d0817eb2e88",
|
||||
"type": "leaf",
|
||||
"state": {
|
||||
"type": "markdown",
|
||||
"state": {
|
||||
"file": "shell scripting.md",
|
||||
"mode": "source",
|
||||
"source": false
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "279ad3ef4fd3a2af",
|
||||
"type": "leaf",
|
||||
"state": {
|
||||
"type": "markdown",
|
||||
"state": {
|
||||
"file": "Linux.md",
|
||||
"mode": "source",
|
||||
"source": false
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "732cda13d69e8846",
|
||||
"type": "leaf",
|
||||
"state": {
|
||||
"type": "markdown",
|
||||
"state": {
|
||||
"file": "templates/new post.md",
|
||||
"mode": "source",
|
||||
"source": false
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "fbd5c78d637b9b76",
|
||||
"type": "leaf",
|
||||
@ -78,6 +114,18 @@
|
||||
"source": false
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "9724238b221bd7bc",
|
||||
"type": "leaf",
|
||||
"state": {
|
||||
"type": "markdown",
|
||||
"state": {
|
||||
"file": "rmarkdown and LaTeX.md",
|
||||
"mode": "source",
|
||||
"source": false
|
||||
}
|
||||
}
|
||||
}
|
||||
],
|
||||
"currentTab": 5
|
||||
@ -134,8 +182,7 @@
|
||||
"state": {}
|
||||
}
|
||||
}
|
||||
],
|
||||
"currentTab": 3
|
||||
]
|
||||
}
|
||||
],
|
||||
"direction": "horizontal",
|
||||
@ -155,7 +202,7 @@
|
||||
"state": {
|
||||
"type": "backlink",
|
||||
"state": {
|
||||
"file": "git and github.md",
|
||||
"file": "shell scripting.md",
|
||||
"collapseAll": false,
|
||||
"extraContext": false,
|
||||
"sortOrder": "alphabetical",
|
||||
@ -172,7 +219,7 @@
|
||||
"state": {
|
||||
"type": "outgoing-link",
|
||||
"state": {
|
||||
"file": "git and github.md",
|
||||
"file": "shell scripting.md",
|
||||
"linksCollapsed": false,
|
||||
"unlinkedCollapsed": true
|
||||
}
|
||||
@ -195,7 +242,7 @@
|
||||
"state": {
|
||||
"type": "outline",
|
||||
"state": {
|
||||
"file": "git and github.md"
|
||||
"file": "shell scripting.md"
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -216,16 +263,20 @@
|
||||
"command-palette:Open command palette": false
|
||||
}
|
||||
},
|
||||
"active": "fbd5c78d637b9b76",
|
||||
"active": "fdfe7d0817eb2e88",
|
||||
"lastOpenFiles": [
|
||||
"internet protocols.md",
|
||||
"Linux.md",
|
||||
"shell scripting.md",
|
||||
"templates/new post.md",
|
||||
"git and github.md",
|
||||
"markup languages.md",
|
||||
"internet protocols.md",
|
||||
"rmarkdown and LaTeX.md",
|
||||
"packages.md",
|
||||
"powershell scripting.md",
|
||||
"functional verbal thinking.md",
|
||||
"AI chatbots.md",
|
||||
"This digital garden.md",
|
||||
"templates/new post.md",
|
||||
"templates"
|
||||
]
|
||||
}
|
||||
@ -1,8 +1,14 @@
|
||||
---
|
||||
title: "git and github"
|
||||
tags :
|
||||
- tag1
|
||||
- entry
|
||||
- budding
|
||||
- Bing_AI_assistance
|
||||
---
|
||||
how to add commits
|
||||
|
||||
To add all changes to the staging area in Git, you can use the command `git add .` . The `.` indicates that you want to add all changes, including new and modified files, to the staging area. Alternatively, you can use the command `git add -A` or `git add --all` to achieve the same result.
|
||||
1. To add all changes to the staging area in Git, you can use the command `git add .` .
|
||||
- The `.` indicates that you want to add all changes, including new and modified files, to the staging area. Alternatively, you can use the command `git add -A` or `git add --all` to achieve the same result.
|
||||
2. git commit -m "message here"
|
||||
|
||||
|
||||
|
||||
@ -12,4 +12,5 @@ Internet protocols are sets of rules that enable communication and data exchange
|
||||
- HTTP: Hypertext Transfer Protocol. [This protocol is used for accessing and displaying web pages over the internet](https://www.techwalla.com/articles/types-of-internet-protocol)[1](https://www.techwalla.com/articles/types-of-internet-protocol)[2](https://www.geeksforgeeks.org/types-of-internet-protocols/).
|
||||
- DNS: Domain Name System. [This protocol is used for translating domain names into IP addresses, which are easier for computers to understand](https://www.techtarget.com/searchnetworking/feature/12-common-network-protocols-and-their-functions-explained)[3](https://www.techtarget.com/searchnetworking/feature/12-common-network-protocols-and-their-functions-explained).
|
||||
|
||||
geminis
|
||||
These are some examples of internet protocols that you may encounter or use on a daily basis. You can learn more about each protocol by reading their specifications or tutorials online
|
||||
|
||||
@ -1,5 +1,6 @@
|
||||
---
|
||||
title: "AI chatbots"
|
||||
title: "new post"
|
||||
tags :
|
||||
- tag1
|
||||
- entry
|
||||
- budding
|
||||
---
|
||||
|
||||
Loading…
Reference in New Issue
Block a user