There's more...

With a repository at GitHub, code reviews are an integral part of pull requests. Let's update README.md and perform a code review at GitHub:

$ git checkout -b update-readmeSwitched to a new branch 'update-readme'$ echo "\nSoon a better name will be decided." >> README.md$ git add README.md$ git commit -m "Updating README.md"[update-readme 6829c33] Updating README.md1 file changed, 1 insertion(+)$ git push origin update-readmeCounting objects: 3, done.Delta compression using up to 4 threads.Compressing objects: 100% (3/3), done.Writing objects: 100% (3/3), 330 bytes | 330.00 KiB/s, done.Total 3 (delta 1), reused 0 (delta 0)remote: Resolving deltas: 100% (1/1), completed with 1 local object.To https://github.com/JohnDoePacktOrg/nomen-nescio.git ...

Get Git Version Control Cookbook now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.