gitty — the Git CLI that speaks human

go dev.to

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 . && git commit -m "update" && git push origin main # After: gitty up No runtime d

Read Full Tutorial open_in_new
arrow_back Back to Tutorials