- cross-posted to:
- [email protected]
- cross-posted to:
- [email protected]
Doesn’t
git status
tell you what to do?use “git add <file>…” to mark resolution
use “git commit” to conclude merge
I always use
git status
to check what is appropriate before doing anything else, since the right thing to do can sometimes be different, like after usinggit rebase
when abreak
command was used vs when asquash
command resulted in a conflict.git gud
If you’ve ever royally fucked something up in git, that hotline is necessary
Never understood why this is such a trope. There’s very little you can’t recover in git (basically, only changes you never committed in the first place).
Branching version control was definitely a “they have played us for absolute fools” moment. Especially after all our projects ended up as isolated branches on isolated microservice repositories so basically none of our code was being integrated, let alone continuously. Good for full-remote open source projects where a central admin team has to police submissions though.