esxi_win11_update3

This commit is contained in:
2026-02-10 22:20:34 +09:00
parent 0ad23ba567
commit 7754026bf7
2 changed files with 42 additions and 1 deletions

View File

@@ -93,7 +93,7 @@
} }
], ],
"direction": "horizontal", "direction": "horizontal",
"width": 300 "width": 314.5
}, },
"right": { "right": {
"id": "0aa25ca1192b2cf5", "id": "0aa25ca1192b2cf5",

View File

@@ -1438,3 +1438,44 @@ To http://192.168.1.44:3000/choibk/choibk.git
choibk@DESKTOP-TQOK12I MINGW64 /b/choibk (main) choibk@DESKTOP-TQOK12I MINGW64 /b/choibk (main)
$ $
# 2026.2.10.
Git에서 사용자 설정을 관리하는 기본 명령어는 **`git config`** 입니다. 이 명령어를 통해 사용자 이름과 이메일 같은 정보를 저장할 수 있습니다.
### 주요 사용자 설정 명령어
- **사용자 이름 설정**
```bash
git config --global user.name "홍길동"
```
- **사용자 이메일 설정**
```bash
git config --global user.email "hong@example.com"
```
- **설정 확인**
```bash
git config --list
```
- **특정 설정 확인**
```bash
git config user.name
git config user.email
```
### 옵션 설명
- `--global` : 현재 PC 전체에서 모든 Git 저장소에 적용됩니다.
- `--local` : 특정 저장소에서만 적용됩니다.
- `--system` : 시스템 전체에 적용됩니다 (관리자 권한 필요).
즉, Git에서 사용자 설정 명령어는 **`git config`**이며, 가장 많이 쓰이는 것은 `git config --global user.name`과 `git config --global user.email` 입니다.
혹시 원하시는 게 **기본 사용자 정보 설정**인지, 아니면 **다른 Git 환경 설정(예: 에디터, 병합 도구 등)**까지 포함해서 알고 싶으신 건가요?