The problem with Git's daily workflow Every day, developers type the same sequences over and over: git add . git commit -m "update" git push origin main That's 3 commands, every single time. Small friction — but dozens of times a day, it adds up. Meet gitty gitty is a single-binary CLI written in Go that wraps Git and GitHub into short, readable commands. # Before: git add . && g