Skip to content

Instantly share code, notes, and snippets.

@donchan922
Last active October 13, 2018 22:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save donchan922/15e3fa50c2861704c6aa760a303f1e38 to your computer and use it in GitHub Desktop.
Save donchan922/15e3fa50c2861704c6aa760a303f1e38 to your computer and use it in GitHub Desktop.
GitHub Flowを使った開発の流れ

GitHub Flowを使った開発の流れ

1. チームで共有しているリモートリポジトリをクローンする

$ git clone https://github.com/<アカウント名>/<リポジトリ名>.git

2. ブランチを作成し、作成したブランチに移動する

$ git checkout -b <ブランチ名>

3. 適宜ファイルを作成・修正する

$ git add <ファイル> $ git commit -m "<コメント>" $ git push origin develop

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment