Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
タグ付きコミットを別のブランチにマージするための構文を見つけようとしています。私はそれが簡単だと推測していますが、私の弱い検索の試みではそれを見つけることができません.
マージする前にタグを更新する必要があることに注意してください。これはブランチとはまったく異なりgit pull origin tag_nameます (ローカル タグは更新されません)。したがって、次のコマンドが必要です。
git pull origin tag_name
git fetch --tags origin
git merge tag_name次に、タグをブランチにマージすることができます。
git merge tag_name