2
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

AブランチからBブランチまでの差分をリセット(同期する)

Last updated at Posted at 2020-07-14

staging ブランチにをパブリッシュブランチとして使用していて
検証が終わったら、masterブランチと同じ状態に戻すのですが、毎回やり方忘れるので残しておきます:santa:

TL;DR

  • A ブランチから B ブランチまでの差分をリセット(同期)
  • git diff branchB..branchA > ファイル名(B を A に同期するファイルを作成)
  • git apply ファイル名 (B を A に同期する)

結論


git diff branchB..branchA > git.patch
git apply git.patch

stagingブランチ => masterブランチに合わせる場合


git diff staging..master > git.patch
git apply git.patch

導入例

上記にrm -rf git.patchgit push.circleci/config.ymlに追加して、定期的にstagingのお掃除させる(月曜AM9時)

sync-master-with-staging.sh
# !/bin/bash -eu

git diff staging..master > git.patch
git apply git.patch
rm -rf git.patch
git push
.circleci/config.yml

version: 2.1

jobs:
   sync-master:
    executor: container
    steps:
      - checkout
      - attach_workspace:
          at: .
      - run: ./scripts/sync-staging-with-master.sh

workflows:
   sync-master-every-monday:
    triggers:
      - schedule:
          cron: '0 0 * * 1' # 月曜日 AM9時
          filters:
            branches:
              only:
                - staging
    jobs:
      - sync-master
2
1
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
2
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?