In this exercise, we practice collaborative centralized workflow. First, we all clone (make a local copy) and try to push (send code to) the main repository. We'll see a small problem with that, and then make a pull request (sending code so that others can review and accept later). We'll discuss how this leads to code review and discuss a number of typical pitfalls.
Please don't go too far ahead, because we will learn from problems that come up.
Everyone needs their GitHub account to be added to our central repository.
- Participants add their usernames to a shared document.
- Instructor adds participants as collaborators to this project.
$ cd centralized-workflow-exercise
In this file share your favourite cooking recipe or haiku or Git trick or whatever.
$ git add yourusername.txt
$ git commit
$ git push origin master
By "upstream" we mean here the repository which we have cloned. Imagine "upstream" being closer to the main development and your local clone to be "downstream".
You probably see something like this:
$ git push
To https://github.com/user/repo.git
! [rejected] master -> master (non-fast-forward)
error: failed to push some refs to 'https://github.com/user/repo.git'
To prevent you from losing history, non-fast-forward updates were rejected
Merge the remote changes (e.g. 'git pull') before pushing again. See the
'Note about fast-forwards' section of 'git push --help' for details.
The push only worked for one participant. Why?
The natural reflex is now to git pull
first but
what happens if we git pull origin master
?
$ git pull origin master
Ideas? What happened under the hood? Discuss git fetch
as an alternative to git pull
.
Discuss git pull --rebase
as an alternative to avoid merge commits.
It will work for one more person.
First find out the hash of your commit. You can do this using git graph
or git log
:
$ git log yourusername.txt
Then create a branch "in the past" pointing to that hash:
$ git branch yourname/somefeature [hash]
The yourname/
prefix has no special meaning: it is just part of a
branch name to indicate who made it.
$ git push origin -u yourname/somefeature
Can we leave out the -u
?
Submit a pull request from your branch towards the master
branch.
Do this through the web interface.
Finally also discuss {{ site.centralized_workflow_exercise_url }}/network.