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 3 years have passed since last update.

GithubFlow 基本の流れ

Last updated at Posted at 2021-08-23

#GithubFlow
1.ローカルブランチを最新にする

2.作業ブランチを作成

3.作業ブランチで作業を行う

4.作業ブランチをコミット

5.作業ブブランチをリモートにpush

6.マージリクエストを出してマージする

7.作業ブランチを削除

1.ローカルブランチを最新にする

git pull 

2.作業ブランチを作成

git switch -c ブランチ名

3.作業ブランチで作業を行う

作業ブランチで開発、修正等を行う。

4.作業ブランチをコミット

git add 
git commit

5.作業ブランチをリモートにpush

git push origin 作業ブランチ名

6.マージリクエストを出してマージする

GitHub上でmain(master)にマージリクエストを行う。

7.作業ブランチを削除

リモートリポジトリとローカルリポジトリの作業ブランチを削除する
git branch -d ブランチ名

...1.に戻りローカルを最新にする。

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?