We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent df31b74 commit 1bccc54Copy full SHA for 1bccc54
README.md
@@ -105,7 +105,7 @@ git status
105
### Step #1 - 작업 브랜치 만들기
106
107
```bash
108
-git checkout -b <브랜치 이름> upstream/main
+git switch -c <브랜치 이름> upstream/main
109
```
110
111
upstream/main는 붙여서 쓰고, 가운데 슬래시(/)가 들어갑니다.
@@ -185,7 +185,7 @@ Pull Request를 했지만 수정하고 싶을 때가 있습니다. 코드 리뷰
185
### Step #1 - 해당 브랜치로 이동하기
186
187
188
-git checkout <브랜치 이름>
+git switch <브랜치 이름>
189
190
191
### Step #2 - 수정하기
@@ -227,7 +227,7 @@ git push origin <브랜치 이름>
227
#### main 브랜치로 이동
228
229
230
-git checkout main
+git switch main
231
232
233
#### 최신 코드 반영
0 commit comments