-
Notifications
You must be signed in to change notification settings - Fork 1
Home
Anton Karakochev edited this page Oct 14, 2020
·
5 revisions
Welcome to the code_party_kp wiki!
- One feature branch per exercise (e.g
Exercise1
). - Everyone creates their own branches branching from it and works in them.
- After those branches are merged to
Exercise1
create a PR to mergeExercise1
intomain
and add the teachers as reviewers.
- (ONLY INITIALLY, NOT EVERY TIME) add Repository as upstream
git remote add upstream https://github.com/Systems-Development-and-Frameworks/homework.git
- fetch changes from upstream
git fetch upstream
- switch to main branch
git checkout main
- merge from upstream (homework repository).
Note that --allow-unrelated-histories
is needed since we will also be updating main with our own code.
git merge upstream/main --allow-unrelated-histories
for more info see this blog.