Bazaar has a convenient bzr resolve command that will recursively mark conflicted files as resolved, but only if their conflict markers have been removed. Is there an equivalent command or script for git?
My repository contains minified Javascript (I'm aware that it's not ideal to track compiled files) that often conflicts after a merge, even if the un-minified source merges cleanly. It's easily fixed by re-minifying and resolving, and doesn't require any manual conflict resolution. My team is migrating from Bazaar to Git and we've come to rely on bzr resolve's smart handling of files with conflict markers: it's safe to blindly run it on the project root after minification. In the future I'd like to automate this process and get the compiled code out of the repository completely, but for now I'm looking for a way to mirror our current process in Git.
I'm aware that git diff --check will report leftover conflict markers, but it's still extra effort to run it and inspect its output before running git add. And running a pre-commit hook that looks for conflict markers isn't ideal unless the hook can also un-stage the offending files and mark them as unresolved (which I haven't discovered how to do). Are there any better options?
git addeach one. I'd like to add them all at once, without also adding source files that still contain conflicts (just like I can do withbzr resolve). – Dana Mar 13 '12 at 21:25