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.
いくつかのブランチでキャッシュされていた静的画像リソースを更新しています。各ブランチをチェックイン/チェックアウトせずに、各ブランチで新しいフォルダーをコミットする方法はありますか?
いいえ。ただし、操作をある程度スクリプト化することはできます。1 つのブランチで変更を行い、その変更のコミット ID が であると仮定して、次のよう$COMMITにします。
$COMMIT
for BRANCH in branch1 branch2 branch3 ...; do git checkout $BRANCH git cherry-pick $COMMIT done