Pull Request

How to

 

Mit git flow, GitHub und in Teamarbeit

Create a feature branch

git flow feature start user_module_1

The code is updated on the feature branch

As changes are committed they are pushed to GitHub (or once at the end if preferred)

When the feature is completed a pull request is opened in GitHub comparing develop and the feature branch user_module_1

The team reviews the pull request and makes comments

Any changes from the pull request are made to the feature branch

Once all changes are incorporated on the feature branch the feature branch is finished:

git flow feature finish user_module_1

The develop branch is pushed to GitHub (GitHub will automatically mark the pull request as closed/merged when this happens)

Thx.

 

Ask

Twitter: @acki_

GitHub: acki

Slack: acki

Pull Request - How to

By acki_

Pull Request - How to

  • 493