Further reading
To learn more about the topics that were covered in this chapter, take a look at the following resources:
- Scott Chacon, Ben Straub. Pro Git, 2nd Edition (2014), Apress, Chapter 2.2, Git Basics - Recording Changes to the Repository: https://git-scm.com/book/en/v2/Git-Basics-Recording-Changes-to-the-Repository
- Jakub Narębski. How to read the output from git diff? (the answer to the question on StackOverflow): https://stackoverflow.com/questions/2529441/how-to-read-the-output-from-git-diff/2530012#2530012
- Dragos Barosan. New in Git: switch and restore (2021): https://www.banterly.net/2021/07/31/new-in-git-switch-and-restore/
- Junio C Hamano. Fun with a new feature in recent Git (2016), about the
--sort
option of thegit branch
command: https://git-blame.blogspot.com/2016/05/fun-with-new-feature-in-recent-git.html - Tobias Günther. A look under the hood: how branches work in Git (2021): https://stackoverflow.blog/2021/04/05/a-look-under-the...