Morton Fox@pawb.socialtoExperienced Devs@programming.dev•How do you manage your dotfiles?
1·
1 year agoI use yadm. It’s a wrapper around git with a few extra commands for dotfile management.
I use yadm. It’s a wrapper around git with a few extra commands for dotfile management.
I use rebase when I’m working in a dev branch. If someone else has pushed changes to the main branch, rebasing the dev branch on top of main is a way to do the hard work of resolving merge conflicts up front. Then I can rerun tests and make sure everything still works with changes from the main branch. And finally, when it is time to merge my dev branch to main, it’s a simple fast-forward.