On Wed, Jul 18, 2012 at 1:04 PM, Elliot Glaysher (Chromium)
<
e...@chromium.org> wrote:
> [erg@elliotg:src] (dialogs-part-whatever)
> I swear that I haven't deleted .gitmodules! Is there any way to
> recover from this?
A couple of hints:
If you want to abort the merge, `git log` to find a good point
(probably the most recent commit prior to the merge) and `git reset
--hard <ref>` to revert to it. Revert does imply what you might fear
however.
`git checkout master .gitmodules` will copy master's version of
.gitmodules to the current tree. You can do this without the git reset
if you want to try and roll with the merge.
Cheers
AGL