Part 8 Moving Beyond the Basics
At this point you have learned all of the main topics you need to become a proficient Git user. There are a handful of commands that you’ll only need to use occasionally.
Covered in this part:
You may need to export the current state of your repository without the entire history. You learn how to do that in Task 41, Exporting Your Repository.
Git attempts to remain as fast as possible, sometimes at the cost of storage efficiency. Task 42, Doing Some Git Housekeeping shows you the commands to run to recalculate your repository’s internal structure and save some disk space.
Many developers are still working in an environment where Subversion is their company’s version control system of choice. ...