Git by Patrik

Git workflow

The main workflow for a developer will follow these steps

  1. Create a branch for the changes to be made and give it a name according to the naming convention.
  2. Commit changes to the branch. There are often multiple commits for a bug fix or feature.
  3. Push the branch to the remote repository.
  4. Create a pull request so other team members can review the changes. To incorporate feedback, more commits might be needed and changes to be pushed.
  5. Complete the pull request and resolve any merge conflicts from changes other team members made after creating the branch.
Git
Workflow

Comments

Leave a Comment

All fields are required. Your email address will not be published.