How to push to my git repo at my VPS server?
I have initiated a git repo in an empty folder at my server, like this:
$git init
Initialized empty Git repository in /home/dcacla5/public_html/website/.git/
how can I push my local GIT repo to this one I've created at my VPS server?
I know that in GIT, we do $git add origin gitURL .. but how can I know that git url I've created so that I add it to my local GIT and start pushing new updated to the website?
Notice that I will use GIT to push new updates to my website hosted at my VPS server
$git init
Initialized empty Git repository in /home/dcacla5/public_html/website/.git/
how can I push my local GIT repo to this one I've created at my VPS server?
I know that in GIT, we do $git add origin gitURL .. but how can I know that git url I've created so that I add it to my local GIT and start pushing new updated to the website?
Notice that I will use GIT to push new updates to my website hosted at my VPS server