I have various Git projects that are on my local machine. I have a server that I would like to use as my remote Git Repository. How do I move my local Git Repositories (Pro
First, create a git repo on your server
git init --bare /path/to/repo
Then add the remote repo to your local one (ssh:// or https://)
git remote add origin ssh://server/path/to/repo
And, push files/commits
git push origin master
And finally, push tags
git push origin --tags