Further reading
To learn more about the topics that were covered in this chapter, take a look at the following resources:
- Scott Chacon and Ben Straub, Pro Git, 2.2 Git Basics – Recording Changes to the Repository, the Ignoring files section: https://git-scm.com/book/en/v2/Git-Basics-Recording-Changes-to-the-Repository#_ignoring
- Scott Chacon and Ben Straub, Pro Git, 7.3 Git Tools – Stashing and Cleaning: https://git-scm.com/book/en/v2/Git-Tools-Stashing-and-Cleaning
- Scott Chacon and Ben Straub, Pro Git, 8.2 Customizing Git – Git Attributes: https://git-scm.com/book/en/v2/Customizing-Git-Git-Attributes
- gitattributes manpage - Defining attributes per path: https://www.git-scm.com/docs/gitattributes
- gitignore manpage - Specifies intentionally untracked files to ignore: https://www.git-scm.com/docs/gitignore
- Pragati Verma, A Guide to Git Stash (2021): https://dev.to/pragativerma18/a-guide-to-git-stash-2h5d
- Andrew Knight, Ignoring Files...