SYNOPSIS
'git switch' [<options>] [--no-guess] <branch>
'git switch' [<options>] --detach [<start-point>]
'git switch' [<options>] (-c|-C) <new-branch> [<start-point>]
'git switch' [<options>] --orphan <new-branch>
DESCRIPTION
指定のブランチに切り替えます。作業ツリーとインデックスは、ブランチに一致するように更新されます。新規コミットは、全てこのブランチの先端に追加されることになります。
オプションで、同じ名前のリモートブランチから自動的に -c
や -C
を使用して新しいブランチを作成するか(--guess
参照)、あるいは切り替え時に --detach
を使用して任意のブランチから作業ツリーをデタッチできます。
ブランチを切り替えるには、クリーンなインデックスと作業ツリーは必要ありません(つまり、「HEAD」との違いはありません)。ただし、操作によってローカル変更が失われる場合、 --discard-changes
または --merge
で特に指示されない限り、操作は中止されます。
!!このコマンドは実験的なものです。 動作が変わる可能性があります!!
OPTIONS
- <branch>
-
切り替え先のブランチ
- <new-branch>
-
新ブランチの名前
- <start-point>
-
新ブランチの開始点。 <start-point> を指定すると、HEADが現在指し示している場所以外の履歴内の場所に基づいてブランチを作成できます。(または、
--detach
の場合、他の場所から検査してデタッチすることができます。)@
{-N} 構文を使用して、「git switch」または「git checkout」操作を使用して切り替えられた最後からN番目のブランチ/コミットを参照できます。@
{-1} と同義の-
を指定することもできます。これは、2つのブランチをすばやく切り替えたり、誤って切り替えたブランチを元に戻したりするためによく使用されます。特別な場合として、マージベースが1つしかない場合は、
A
とB
のマージベースのショートカットとしてA
...
B
を使用できます。A
とB
のうち片方を省略できます。その場合、省略した方はデフォルトでHEAD
になります。 -
-c
<new-branch> -
--create
<new-branch> -
Create a new branch named <new-branch> starting at <start-point> before switching to the branch. This is the transactional equivalent of
$ git branch <new-branch> $ git switch <new-branch>
that is to say, the branch is not reset/created unless "git switch" is successful (e.g., when the branch is in use in another worktree, not just the current branch stays the same, but the branch is not reset to the start-point, either).
-
-C
<new-branch> -
--force-create
<new-branch> -
Similar to
--create
except that if <new-branch> already exists, it will be reset to <start-point>. This is a convenient shortcut for:$ git branch -f <new-branch> $ git switch <new-branch>
-
-d
-
--detach
-
Switch to a commit for inspection and discardable experiments. See the "DETACHED HEAD" section in git-checkout(1) for details.
-
--guess
-
--no-guess
-
If <branch> is not found but there does exist a tracking branch in exactly one remote (call it <remote>) with a matching name, treat as equivalent to
$ git switch -c <branch> --track <remote>/<branch>
ブランチが複数のリモートに存在し、そのうちの1つが
checkout.defaultRemote
構成変数によって名前が付けられている場合、 <branch> がすべてのリモートで一意でなくても、曖昧さ回避の目的でそのブランチを使用します。例えば、 <branch> があいまいであるが、origin
リモートに存在する場合、そこからリモートブランチを常にチェックアウトするには、これをcheckout.defaultRemote=origin
と設定します。 git-config(1) のcheckout.defaultRemote
も参照してください。--guess
がデフォルトの動作です。無効にするには、--no-guess
を使用します。デフォルトの動作は、
checkout.guess
構成変数で設定できます。 -
-f
-
--force
-
An alias for
--discard-changes
. -
--discard-changes
-
Proceed even if the index or the working tree differs from
HEAD
. Both the index and working tree are restored to match the switching target. If--recurse-submodules
is specified, submodule content is also restored to match the switching target. This is used to throw away local changes. -
-m
-
--merge
-
If you have local modifications to one or more files that are different between the current branch and the branch to which you are switching, the command refuses to switch branches in order to preserve your modifications in context. However, with this option, a three-way merge between the current branch, your working tree contents, and the new branch is done, and you will be on the new branch.
マージの競合が発生すると、競合するパスのインデックスエントリはマージされないままになり、競合を解決し、解決されたパスを
git
add
(またはマージによってパスが削除される場合はgit
rm
)でマークする必要があります。 -
--conflict=
<style> -
The same as
--merge
option above, but changes the way the conflicting hunks are presented, overriding themerge.conflictStyle
configuration variable. Possible values are "merge" (default), "diff3", and "zdiff3". -
-q
-
--quiet
-
Quiet, suppress feedback messages.
-
--progress
-
--no-progress
-
Progress status is reported on the standard error stream by default when it is attached to a terminal, unless
--quiet
is specified. This flag enables progress reporting even if not attached to a terminal, regardless of--quiet
. -
-t
-
--track
[direct
|inherit
] -
When creating a new branch, set up "upstream" configuration.
-c
is implied. See--track
in git-branch(1) for details.-c
オプションが指定されていない場合、新しいブランチの名前は、対応するリモート用に構成されたrefspecのローカル部分を調べ、次に、最初の部分を「*」まで削除することにより、リモート追跡ブランチから取得されます。これは、origin/hack
(またはremotes/origin/hack
あるいはrefs/remotes/origin/hack
)から分岐するときに、ローカルブランチとしてhack
を使用するように指示します。指定された名前にスラッシュ(/)がない場合、または上記の推測の結果が空の名前になる場合、推測は中止されます。このような場合は、-c
を使用して明示的に名前を付けることができます。 -
--no-track
-
Do not set up "upstream" configuration, even if the
branch.autoSetupMerge
configuration variable is true. -
--orphan
<new-branch> -
Create a new unborn branch, named <new-branch>. All tracked files are removed.
-
--ignore-other-worktrees
-
git
switch
refuses when the wanted ref is already checked out by another worktree. This option makes it check the ref out anyway. In other words, the ref can be held by more than one worktree. -
--recurse-submodules
-
--no-recurse-submodules
-
Using
--recurse-submodules
will update the content of all active submodules according to the commit recorded in the superproject. If nothing (or--no-recurse-submodules
) is used, submodules working trees will not be updated. Just like git-submodule(1), this will detachHEAD
of the submodules.
EXAMPLES
以下のコマンドは "master" ブランチに切り替えます:
$ git switch master
間違ったブランチで作業した後、正しいブランチへの切り替えは以下を使用して行われます:
$ git switch mytopic
ただし、「間違った」ブランチと正しい「mytopic」ブランチは、ローカルで変更したファイルが異なる場合があります。その場合、上記のswitchは以下のように失敗します:
$ git switch mytopic
error: You have local changes to 'frotz'; not switching branches.
コマンドに -m
フラグを指定すると、3方向のマージを試行します:
$ git switch -m mytopic
Auto-merging frotz
この3者間マージの後、ローカルの変更はインデックスファイルに登録されないため、 git
diff
は、新しいブランチの先端以降に行った変更を示します。
mytopicに切り替える前に前のブランチ(つまり、 "master" ブランチ)に戻すには:
$ git switch -
どのコミットからでも新しいブランチを成長させることができます。たとえば、 "HEAD~3" に切り替えて、ブランチ "fixup" を作成します:
$ git switch -c fixup HEAD~3
Switched to a new branch 'fixup'
同じ名前のリモートブランチから新しいブランチを開始する場合:
$ git switch new-topic
Branch 'new-topic' set up to track remote branch 'new-topic' from 'origin'
Switched to a new branch 'new-topic'
新しいブランチを作成せずに、一時的な検査または実験のためにコミット HEAD~3
をチェックアウトするには:
$ git switch --detach HEAD~3
HEAD is now at 9fc9555312 Merge branch 'cc/shared-index-permbits'
一時的な検査または実験のために行ったことに維持する価値があることが判明した場合は、(切り替えることなく)、いつでも新しい名前を作成できます:
$ git switch -c good-surprises
CONFIGURATION
このセクションの以下のすべては、 git-config(1) ドキュメントの抜粋です。 内容は git-config(1) ドキュメント にあるものと同一です:
- checkout.defaultRemote
-
git
checkout
<something> またはgit
switch
<something> を実行し、リモートが1つしかない場合、origin/
<something> のチェックアウトと追跡に暗黙的にフォールバックする可能性があります。 <something> 参照を持つリモートが複数あるとすぐに動作しなくなります。 この設定により、曖昧性解消に関して常に勝利させる優先リモートの名前を設定できます。 典型的なユースケースは、これをorigin
に設定することです。現在、これは git-switch(1) と git-checkout(1) によって、
git
checkout
<something> やgit
switch
<something> が別のリモート上の <something> ブランチをチェックアウトするときに使われています。また git-worktree(1) はgit
worktree
add
がリモートブランチを参照しているときに使われています。 この設定は、将来、他のチェックアウトのようなコマンドまたは機能に使用される可能性があります。 - checkout.guess
-
git
checkout
とgit
switch
の、--guess
または--no-guess
オプションのデフォルト値を提供します。 git-switch(1) および git-checkout(1) を参照してください。 - checkout.workers
-
作業ツリーを更新するときに使用する並列ワーカーの数。デフォルトは1、つまり順次実行です。 1未満の値に設定すると、Gitは使用可能な論理コアの数と同じ数のワーカーを使用します。 この設定と
checkout.thresholdForParallelism
は、チェックアウトを実行するすべてのコマンドに影響します。 例えば、 checkout, clone, reset, sparse-checkout, などです。注意: 並列チェックアウトは通常、SSDまたはNFS上にあるリポジトリのパフォーマンスを向上させます。 回転するディスクやコアの数が少ないマシン上のリポジトリの場合、デフォルトのシーケンシャルチェックアウトの方がパフォーマンスが向上することがよくあります。 リポジトリのサイズと圧縮レベルも、並列バージョンのパフォーマンスに影響を与える可能性があります。
- checkout.thresholdForParallelism
-
少数のファイルで並列チェックアウトを実行する場合、サブプロセスの生成とプロセス間通信のコストが並列化のメリットを上回る可能性があります。 この設定により、あなたは並列チェックアウトを試行する必要のあるファイルの最小数を定義できます。 デフォルトは100です。
SEE ALSO
GIT
Part of the git(1) suite