1. git branch
https://ifuwanna.tistory.com/283
git branch (현재 작업중인 로컬 브랜치 목록 조회)
git branch -r (원격 브랜치 목록 조회)
git branch -a (모든 브랜치 목록 조회)
git branch 브랜치 이름 : 브랜치 새로 생성
git branch -d 브랜치 이름 : 브랜치 삭제
**git checkout 으로 이동
https://backlog.com/git-tutorial/kr/stepup/stepup2_2.html
2. git merge
https://backlog.com/git-tutorial/kr/stepup/stepup2_4.html
git checkout develop 에서 작업 후
git checkout master로 돌아와서
git merge develop 하면 ( 여기서 git pull해줘야)
master에 다 병합됨
git push
충돌할 때 ** 사례
https://backlog.com/git-tutorial/kr/stepup/stepup2_7.html
'CS > ETC.' 카테고리의 다른 글
브랜치 전략 (0) | 2022.04.17 |
---|---|
JAVA - MD5, SHA-256 암호화 (0) | 2022.03.30 |
Signed & Unsigned (0) | 2022.01.07 |
openssl, soap이란 (0) | 2021.12.26 |
웹 호스팅, 서버 호스팅, 클라우드 (0) | 2021.12.19 |