How to make scp copy hidden files?

That should absolutely match hidden files. The / at the end of the source says “every file under this directory”. Nevertheless, testing and research bear you out. This is stupid behavior. The “answer” is to append a dot to the end of the source: scp -rp src/. user@server:dest/ The real answer is to use rsync.

How do I create a symbolic link in Windows?

You can create a symbolic link with the command line utility mklink. MKLINK [[/D] | [/H] | [/J]] Link Target /D Creates a directory symbolic link. Default is a file symbolic link. /H Creates a hard link instead of a symbolic link. /J Creates a Directory Junction. Link specifies the new symbolic link name. Target … Read more