How to move all files and folders via mv command
Try with this:
mv /path/sourcefolder/* /path/destinationfolder/
zsh:
mv /src/*(D) /dst/
(D)
to include dot-files.
This works for me in Bash (I think this depends on your shell quite a bit...)
$ mv source/{,.}* /destination/folder/here