일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- ecmascript modules(esm)
- commonjs와 ecmascript modules(esm)
- 참조형 default
- vue 컴포저블 함수
- git
- reflow
- last-modified
- d3 지도 확대/축소
- Learning React
- cloud firestore id auto increment
- firebase id 자동
- $fetch
- 다자 이해관계자 모델
- d3 지도 타입스크립트
- 화살표 함수 중괄호
- vuedraggable
- 함수형 프로그래밍
- vue composable 함수
- vue draggable 차트 안나옴
- 인터넷 거버넌스
- ToDo
- d3 지도
- component is already mounted please use $fetch instead.
- 화살표 함수 {}
- d3 지도 툴팁
- 참조형 props의 default
- usefetch
- repaint
- nuxt universal rendering
- vue3 drag and drop
- Today
- Total
목록git (2)
빵 입니다.

Working directory => Index (Stage) => Local repository => Remote repository (HEAD) add Working directory ===> Index (Stage) commit Index (Stage) ===> Local repository push Local repository ===> Remote repository (HEAD) 1. add 원격 저장소에 최종적으로 반영할 소스들을 선별해두는 가상의 공간 파일을 Stage에 추가 (add) Working directory ===> Index (Stage) $ git add $ git add * ===> 이후 “staging 상태” 라고 한다. 2. commit 저장소에 변경 사항 기록 stagi..
사용자 정보 입력 $ git config --global user.name "HWANG CONAN" $ git config --global user.email conan@example.com 설정 값 확인 $ git config --global --list ===> user.name=mypmk ===> user.email=mypmk@naver.com 로컬 저장소 만들기 $git init 로컬 저장소 복제하기 $git clone /로컬/저장소/경로 스테이지 상태 확인 명령어 $git status $git ls-files --stage 변경사항 확인 $git diff ===> 아직 스테이징되지 않고 커밋되지 않은 작업 디렉토리의 untracked 파일의 변경사항을 보여준다. ===> ‘-‘로 시작된 줄은 삭..