From ee090466b0a752a51f39475a6c0d7b4c85f2470f Mon Sep 17 00:00:00 2001 From: r-fujimoto Date: Sun, 30 Jun 2024 10:41:40 +0900 Subject: [PATCH] change checkout to switch (#158) --- src/development/git/README.md | 10 +++++----- src/development/github/README.md | 4 ++-- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/src/development/git/README.md b/src/development/git/README.md index 198abfd6..4d7aaad0 100644 --- a/src/development/git/README.md +++ b/src/development/git/README.md @@ -462,10 +462,10 @@ $ git branch ### 6.3. ブランチを移動する -:computer: "fix" Branch へ移動するために Checkout する。 +:computer: "fix" Branch へ移動するために Switch する。 ``` -$ git checkout fix +$ git switch fix ``` :computer: 現在のブランチを確認する @@ -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) @@ -600,7 +600,7 @@ $ git merge <取り込みたいブランチ名> :computer: "master"ブランチへ移動してから"fix"ブランチの変更内容を、メインである"master"ブランチへ取り込みましょう ``` -$ git checkout master +$ git switch master $ git merge fix ``` diff --git a/src/development/github/README.md b/src/development/github/README.md index 92755a45..ca2481f4 100644 --- a/src/development/github/README.md +++ b/src/development/github/README.md @@ -264,7 +264,7 @@ Blameボタンを押してください。 :computer: ローカルリポジトリでブランチを切ります ``` -$ git checkout -b fix +$ git switch -c fix ``` `README.md`に何か1行足してコミットしてください。 @@ -315,7 +315,7 @@ Pull Requestを作成する画面になったら、どういった変更を入 :computer: ローカルリポジトリの`main`ブランチに移動してファイルの内容がGitHubの表示とは異なる(マージ前の状態である)ことを確認しましょう。 ```bash -$ git checkout main +$ git switch main ``` この状態ではリモートリポジトリ(GitHub)ではマージされているが、ローカルリポジトリには反映されていない状態です。