Recent Activity














Dain
User for 2 weeks
Created Content
Recently Created Pages View All
네트워크 주소, 브로드캐스트 주소 계산
1. 조건IP 주소: 192.168.35.10서브넷 마스크: 255.255.252.0 (/22)2. 네트워크 주소 계산2.1 서브넷 마스크 이진 표현255.255.252.0 ...
마인드맵
Git 내부 구조 ├── 1. Working Directory │ └── 실제 작업 공간 (코드 작성, 수정) │ ├── 2. Index (Staging Area)...
Git 명령어에 따른 .git 내부 구조 변화 (2부)
4. git stash 시 내부 변화4.1 예시 명령어git stash4.2 .git 내부 변화구성 요소변화 내용.git/objects/현재 작업 상태(스냅샷)가 stash용...
Git 명령어에 따른 .git 내부 구조 변화(1부)
1. git merge 시 내부 변화1.1 예시 명령어git checkout main git merge feature1.2 .git 내부 변화구성 요소변화 내용.git/ob...
commit 생성시 .git 내부 변화
시나리오hello.txt 파일 생성git add hello.txtgit commit -m "Add hello"1. 작업 디렉토리 (Working Directory)echo "...