git basics, continued
Part 2: branch, pull request, merge
- In your existing repo, execute
git log just to see what that command gives you.
- One of you: create a branch, make a change on the branch, and commit and push the changes.
- Same person: create a GitHub pull request.
- Somebody else: review and accept the pull request.
- Everybody: pull the latest stuff from the repo. Take a look at
git log. What do you see?
- Write up Part 2 in the readme.
Part 3: make and resolve a merge conflict
- In the main branch, members of your group should make changes that generate a merge conflict.
- Resolve the conflict.
- Write up Part 3 in the readme. Include questions if you have them.