7
git flow - how to Patryk Szlagowski

Git flow - how to

Embed Size (px)

Citation preview

Page 1: Git flow - how to

git flow - how toPatryk Szlagowski

Page 2: Git flow - how to

1. Introduction2. Branching model3. Terminal tools4. “Summary of actions”5. Links

Page 3: Git flow - how to

1. Introduction

● Git extensions to provide high-level repository operations for Vincent Driessen's branching model.

branching model terminal tools

git flow

Page 4: Git flow - how to

2. Branching model

Page 5: Git flow - how to

3. Terminal tools

git flow hotfix

feature

release

init

finish

start

publish

pull

[NAME]

Page 6: Git flow - how to

4. “Summary of actions”

After each command, git flow shows us a information about actions. For example, after git flow init:

Switched to a new branch 'feature/test'

Summary of actions:

- A new branch 'feature/test' was created, based on 'develop'

- You are now on branch 'feature/test'

Now, start committing on your feature. When done, use:

git flow feature finish test