DEV Community

Discussion on: Git Workflow: Do you commit to master on your solo projects?

Collapse
 
jonasroessum profile image
Jonas Røssum • Edited

Same. GitHub helps me a lot with this, as deleting the branch is suggested whenever you merge a pull request. You still gotta delete them locally, but I recommend using your remote repository as the "source of truth", so that you can always delete branches that are no longer coupled to a pull request, if that makes sense.

Thread Thread
 
daveskull81 profile image
dAVE Inden

That does make sense and I agree that GitHub helps a lot with this. The management of local branches to me is a painful process and part of why I asked this question.