일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- tcp
- AWS
- Kafka
- Spring
- EC2
- java
- airflow
- Python
- docker
- jvm
- ip
- grafana
- Network
- Packet
- kubernetes
- aws s3
- Operating System
- kubeadm
- zookeeper
- JavaScript
- kubectl
- CVAT
- log
- PostgreSQL
- helm
- CSV
- MAC address
- Trino
- Vision
- OS
- Today
- Total
목록git (3)
JUST WRITE

이 글은 'A successful Git branching model'을 해석, 정리한 글입니다. The main branches master origin/master, HEAD Product Release 하기 위한 branch Release History 관리 -> tagged with a release number develop origin/develop, HEAD reflect a state with the lastest deliverd development changes for the next release 안정적인 상태 유지 Supporting branches Feature branches 새로운 기능 개발 -> for the upcoming or distant future release de..

Origin / Master / Head Origin Remote Branch를 의미 ex) origin/master 보통 Remote Branch 이름 -> ${Remote Repository}/${branch Name} git clone시 따로 Remote Repository 이름 지정하지 않으면 origin으로 지정 Master branch 중 가장 기본이 되는 branch Head checkout 된 branch, pointer 같은 역할 git Area Working Directory Local Project Directory 내 .git 이력과. git을 제외한 모든 영역 실제 code의 추가/변경이 이루어지는 영역 Stage Area(Index Area) Working Directory에서 ..

이 글은 git 공식 홈페이지 'About'을 정리하여 작성한 글입니다. git 형상관리 도구(Configuration Management Tool), 버전 관리시스템(VCS, Version Control System)의 한 종류 특징 Branching and Merging Frictionless Context Switching : branch 작업 중 커밋 후 손쉽게 다른 branch 전환 가능. Role-Based Codelines : branch는 특수한 Role(production, testing...) 가짐. Feature Based Workflow : 작업의 기본 단위는 feature. Disposable Experimentation : 새로운 branch를 통해 쉽게 실험, 테스팅 진행 가능..