16 May 2019

You can stop merge keeping all current changes in the working directory using stash. Witch stops the on going merge automatically.

Source code viewer
  1. git stash save
  2. git stash pop
Programming Language: Bash