For your case, the best way to do it is to copy over the folder ( copy, scp, cp, robocopy whichever ) to the new server and delete the old folder.
I completely disagree with @Pablo Santa Cruz that cloning is the paradigm for what you are doing. No it is not. You are moving a repo to a new computer.
Why I don't like clone for this purpose:
creates remote-tracking branches for each branch in the cloned repository (You are moving, and the old repo is defunct.)
Any remote branches and other refs are completely ignored.
You don't get your hooks if you had any and you might forget that you had them!
You cannot get "lost" commits etc using git reflog or other means. Might not be a huge issue, especially if the repo acted as a server but something to be aware of
If you see for ways to backup a git repo, git clone wouldn't be the top answers. It then shouldn't be for moving a repo! I also feel that just a git clone as @Pablo Santa Cruz suggests cannot be a proper answer because git clone has the --mirror option, which preserves the repo meaning that a git clone repo is different from git clone --mirror repo ( apart from being bare, it is mostly the differences I mentioned above ). Anyway, I would do a copy because I KNOW what I get with the copied repo - the SAME repo!
When to consider git clone:
1) It is faster as git does some optimization while cloning
2) You might have different git version on the new machine and a copy might make the repo unusable in the other version ( not very common nowadays). But actually this can be a pro for copying as well as this shows that the new computer doesn't have the same git version.