Karnage's avatar
Karnage 3 weeks ago
I can’t stand git… always so many issues. The worst solo work experience imaginable. Needs to be reimagined from ground up.

Replies (7)

You just need $ git checkout -b new-feature $ git add . $ git commit -m 'message' $ git push --set-upstream origin new-feature These are pretty much the only commands I use. If working with Claude code, I don't eve use git add, I use VSCode to add files, so that I can tell which files I am okay with committing, and which files I am yet to review. Then I push to GitHub. I don't even merge branches using git locally, I use GitHub PRs for that. How are you using it?
chrizzz's avatar
chrizzz 3 weeks ago
Always liked Mercurial better