반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
Tags
- vue-cli
- api test
- CSS
- Cypress
- QUIC
- e2e
- typeScript
- http3
- SSR
- ts error
- custom command
- https
- devtools
- web vital
- CloudFlare
- 비동기
- aws
- svelte
- vue
- msw
- TLS
- csr
- ViTE
- 선택자
- vue3
- caching
- import.meta.env
- rendering
- Testing
- JavaScript
Archives
- Today
- Total
목록git tree (1)
Develop Note by J.S.

1. GIT 트리(3단계) - GIT은 아래 3개의 트리(파일의 묶음)를 관리하는 시스템입니다. 1) HEAD : 현재 브랜치를 가리키는 포인터이며, 브랜치의 마지막 commit을 가리킵니다. 2) Index : Staging Area라고도 하며 git add 명령어로 stage에 작업한 파일이 올라가는 가상의 공간 3) Working Directory : 내용이 수정된 파일이 존재하는 공간 (Untracked files) * Untracked files - 이력 추적 대상이 아닌 파일, git add로 Index에 올리면 추적 대상으로 등록됩니다. 2. Work Flow 1) 파일생성 or 수정(Working Directory) 2) git add [files] (Index) 3) git commit ..
DevOps/Git
2023. 7. 10. 15:45