Skip to content

Commit 1bccc54

Browse files
committed
Replace checkout with switch
Replace all `checkout` in the `README.md` with `switch`.
1 parent df31b74 commit 1bccc54

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ git status
105105
### Step #1 - 작업 브랜치 만들기
106106

107107
```bash
108-
git checkout -b <브랜치 이름> upstream/main
108+
git switch -c <브랜치 이름> upstream/main
109109
```
110110

111111
upstream/main는 붙여서 쓰고, 가운데 슬래시(/)가 들어갑니다.
@@ -185,7 +185,7 @@ Pull Request를 했지만 수정하고 싶을 때가 있습니다. 코드 리뷰
185185
### Step #1 - 해당 브랜치로 이동하기
186186

187187
```bash
188-
git checkout <브랜치 이름>
188+
git switch <브랜치 이름>
189189
```
190190

191191
### Step #2 - 수정하기
@@ -227,7 +227,7 @@ git push origin <브랜치 이름>
227227
#### main 브랜치로 이동
228228

229229
```bash
230-
git checkout main
230+
git switch main
231231
```
232232

233233
#### 최신 코드 반영

0 commit comments

Comments
 (0)