by shigemk2

当面は技術的なことしか書かない

git branch show-current

今のブランチ名を表示する

--show-current
Print the name of the current branch. In detached HEAD state, nothing is printed.

これを応用して今のブランチでgit pullする(fish shell)

git pull origin (git branch --show-current)

git-scm.com