The root cause of the problem is discussed in detail (rather colorfully) in this post (ht romainl ). I managed to find a solution using the cp.exeone supplied with msygit .
Make sure you cp.exeare on your way
cp.exe <GIT_HOME>\bin. ``\bin directory. So I copied cp.exe and msys-1.0.dll` .
g:NERDTreeCopyCmd
_vimrc
let g:NERDTreeCopyCmd= 'cp -r '
s:Path.copy.
2297-2299 ~/vimfiles/bundle/nerdtree/plugin/NERD_tree.vim (, vim)
2297-2299
let dest = s:Path.WinToUnixPath(a:dest)
let cmd = g:NERDTreeCopyCmd . " " . escape(self.str(), s:escape_chars) . " " . escape(dest, s:escape_chars)
let dest = a:dest
let cmd = 0
if s:running_windows
let cmd = g:NERDTreeCopyCmd . '"' . self.str() . '" "' . dest . '"'
else
let cmd = g:NERDTreeCopyCmd . " " . escape(self.str(), s:escape_chars) . " " . escape(dest, s:escape_chars)
endif