Last Sync: 2025-12-22 20:54 (Mobile)

This commit is contained in:
2025-12-22 20:54:36 +09:00
parent 1813aba4cc
commit cf0cd1b38c

View File

@@ -4,9 +4,15 @@
```
git log --branches --graph --decorate --oneline
```
# banch 병합
```
git merge exp
```
> exp는 브렌치 이름
> 예를 들어 master가 있고, exp는 브렌치 이름
> 합칠때는 원본을 기본으로 해주고 합칠 브렌치를 exp 처럼 입력
# branch 지우기
```
git branch -d [브렌치명]
```