0
0

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 1 year has passed since last update.

作業ブランチを最新にする手順

Last updated at Posted at 2023-07-22

1. masterブランチへ移動

git checkout master

2. masterを最新に更新

git pull origin master

3. 開発用のブランチへ移動

git checkout 開発用ブランチ名

4. masterの内容を取り込む

git merge master

5. 取り込んだものをリモートにpush

git push origin 開発用ブランチ名
0
0
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
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?