-
Notifications
You must be signed in to change notification settings - Fork 6
リリースのためのブランチ作業
Seiya Nishizawa edited this page Jan 16, 2023
·
1 revision
リリースのためのブランチの作業
- local リポジトリでの作業
- hotfix ブランチを master にマージする
% git checkout master
% git pull
% git merge hotfix/?.?.?
- tag をつける
% git tag ?.?.?
タグメッセージは、release ?.?.?
とする
- develop にマージする
% git checkout develop
% git pull
% git merge hotfix/?.?.?
- github.com の開発プロジェクトに push する
% git checkout master
% git push origin master
% git push origin ?.?.? # tag の push
% git checkout develop
% git push origin develop
- github の公開プロジェクトに push する
% git remote add github git@github.com:scale-met/scale.git # 一度だけ
% git checkout master
% git push github master
% git push github ?.?.? # tag の push