@tecknack
Nothing here yet.
Nothing here yet.
No blogs yet.
Torvalds wrote git because he was frustrated with the existing tools of the day. The Linux codebase was stored in CVS and code changes were introduced via patches that were emailed directly to Linus. It's important to note that git was designed to replace CVS and not email patches. Git is designed to support the sharing of commits over email. As others have pointed out; communication between developers is critical, git enables this like no tool that came before it ...and also branching!
Small commits (without squashing) makes for a more effective 'git bisect', should you ever need to trace a bug down to a single commit. Note that every commit should pass the project's test suite. There's nothing sweeter than tracing a regression down to a single line of code using git bisect!