Resolve Git merge conflicts in favor of their changes during a pull
# In conflicted state
$ git checkout --theirs . // use thier code from remote repo
$ git checkout --ours . // use our code form local repo
$ git add -u . // add file with skip iles that are not under version control
// search keyword on files and load files to buffers
:args `rg -l pattern path/`
// list buffers
:buffers
// substitute word for each buffers and save
:argdo %s/pattern/newpattern/ge | update