LoginSignup
0
0

More than 1 year has passed since last update.

Gitで今いるブランチ名を取得する方法( git branch --show-current )

Last updated at Posted at 2021-11-04

Gitで現在のブランチ名を取得するコマンド

git branch --show-current

どうせならブランチ名をコピーまで

macの場合
git branch --show-current | pbcopy
windowsの場合
git branch --show-current | clip

aliasも加えちゃおう

alias gbcp='git branch --show-current | pbcopy'
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0