by shigemk2

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

git cherry-pick in remote branch

git cherry-pick in remote branch

リモートブランチのコミットもcherry-pickできるの?できるよ。

git fetchしてればね。ってはなし。

# fetch just the one remote
git fetch <remote>
# or fetch from all remotes
git fetch --all
# make sure you're back on the branch you want to cherry-pick to
git cherry-pick xyz