-
Notifications
You must be signed in to change notification settings - Fork 21
Description
Identify Steps:
- Step _1
Week:
week 1
Describe the Issue
Branch Definition
The definition of a branch is not correct imho when it comes to the comparison with a fork
A fork is a copy of repository (including its branches) that can (but need not) be used to contribute to a project.
A branch is created within one repository with the goal to create another line of development that is isolated from the stable (main) branch. This enables the changes of code in an isolated environment without destabilizing the main branch.
Typo in Pull request Section
In the Pull request section there seems to be a "typo":
*You are basically asking for permission to "merge" your changes."
I guess the star as well as the last quotes are not needed.
Enhancement
Maybe a short description of the typical flow to sync your fork with the upstream repository via GitHub might be of value for the students:
Fetch + Merge upstream -> Pull changes to your local repo -> commit changes to branch -> psuh branch
Proposed Fix
- Remove the comparison with a fork from the branch definition.
- Correct typo
- (Optional) Add GH Flow with forks