Skip to content

Commit

Permalink
change checkout to switch (#158)
Browse files Browse the repository at this point in the history
  • Loading branch information
ryoya-fujimoto authored Jun 30, 2024
1 parent b87954d commit ee09046
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
10 changes: 5 additions & 5 deletions src/development/git/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -462,10 +462,10 @@ $ git branch

### 6.3. ブランチを移動する

:computer: "fix" Branch へ移動するために Checkout する。
:computer: "fix" Branch へ移動するために Switch する。

```
$ git checkout fix
$ git switch fix
```

:computer: 現在のブランチを確認する
Expand Down Expand Up @@ -523,10 +523,10 @@ $ git show

### 6.5. "master"ブランチへ戻る

:computer: `master` へ移動するために Checkout します。
:computer: `master` へ移動するために Switch します。

```
$ git checkout master
$ git switch master
```

![masterブランチに戻った](./images/git_return_master_branch.drawio.svg)
Expand Down Expand Up @@ -600,7 +600,7 @@ $ git merge <取り込みたいブランチ名>
:computer: "master"ブランチへ移動してから"fix"ブランチの変更内容を、メインである"master"ブランチへ取り込みましょう

```
$ git checkout master
$ git switch master
$ git merge fix
```

Expand Down
4 changes: 2 additions & 2 deletions src/development/github/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,7 @@ Blameボタンを押してください。
:computer: ローカルリポジトリでブランチを切ります

```
$ git checkout -b fix
$ git switch -c fix
```

`README.md`に何か1行足してコミットしてください。
Expand Down Expand Up @@ -315,7 +315,7 @@ Pull Requestを作成する画面になったら、どういった変更を入
:computer: ローカルリポジトリの`main`ブランチに移動してファイルの内容がGitHubの表示とは異なる(マージ前の状態である)ことを確認しましょう。

```bash
$ git checkout main
$ git switch main
```

この状態ではリモートリポジトリ(GitHub)ではマージされているが、ローカルリポジトリには反映されていない状態です。
Expand Down

0 comments on commit ee09046

Please sign in to comment.