Skip to content

Commit 4b77dce

Browse files
committed
Quartz sync: Jan 2, 2026, 2:03 PM
1 parent 5b263b7 commit 4b77dce

File tree

3 files changed

+12
-3
lines changed

3 files changed

+12
-3
lines changed

content/notes/install-windows-11-ltsc.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@ tags:
66
- note
77
draft: true
88
created: 2025-12-31T20:27
9-
updated: 2026-01-01T13:46
9+
updated: 2026-01-02T14:00
1010
---
1111
Let's install a version on windows

content/notes/install-winget-on-windows-11-ltsc.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ tags:
77
- winget
88
draft: false
99
created: 2025-12-31T16:30
10-
updated: 2026-01-01T14:10
10+
updated: 2026-01-02T14:00
1111
---
1212
This guide provides step-by-step instructions for installing the Windows Package Manager (WinGet) on Windows 11 LTSC.
1313

content/notes/simple-git-workflow-guide.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ tags:
77
- git
88
draft: false
99
created: 2025-10-12T16:21
10-
updated: 2025-12-31T17:24
10+
updated: 2026-01-02T14:02
1111
---
1212
A minimal guide covering the essential Git commands for daily team development.
1313

@@ -18,6 +18,15 @@ A minimal guide covering the essential Git commands for daily team development.
1818
git config --global user.name "Your Name"
1919
git config --global user.email "your.email@company.com"
2020

21+
# Verify your config
22+
git config --list
23+
```
24+
25+
---
26+
27+
## Clone a Repository
28+
29+
```shell
2130
# Clone the repository
2231
git clone https://github.com/company/project.git
2332
cd project

0 commit comments

Comments
 (0)