Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  • In your local Git repository, create a new branch from the main branch with a name that includes the issue number, e.g., issue-42-fix-feature.

    Code Block
    git checkout devlopdevelop
    git pull origin develop # Ensure your main branch is up-to-date 
    git checkout -b issue-42-fix-feature

...