-2

I have problem when implement merge (three way merge ) when open message I don't found button Exit and I don't How to Exit Attached Image.please Help me

merge screenshot

max630
  • 8,762
  • 3
  • 30
  • 55
  • 1
    `:q` -> It's Vi or Vim https://en.wikipedia.org/wiki/Vim_(text_editor). Terminal programs are text only, you won't find an "exit" button – ggdx Jul 28 '18 at 11:47
  • Possible duplicate of [How to exit the Vim editor?](https://stackoverflow.com/questions/11828270/how-to-exit-the-vim-editor) – phd Jul 28 '18 at 14:16
  • https://stackoverflow.com/search?q=%5Bgit%5D+exit+vim – phd Jul 28 '18 at 14:16

2 Answers2

0

1- Exit from insert mode (By pressing Esc key)

2- type :wq and press Enter

Mahdi Aryayi
  • 1,090
  • 7
  • 13
0

You are using Vim there, which has some fairly non-standard controls. Once you get use to it, Vim is quite nice, but daunting for beginners. For a short tutorial you might want to look at this among other resources.

As has already been said, what you'll need to do when that pops up is press : then type x and Enter. The colon brings a sort of Vim command line, and x is the command for "exit and save".

In your case you don't need to leave insert mode, at least judging from the picture, however if you see "insert" in the bottom left-hand corner, then you will need to get out of insert mode by pressing Escape.

Nero gris
  • 562
  • 7
  • 15