I have project on localhost and on server. There is a working version on the server and I would not like to stop working my site.
On localhost I did:
git init
git remote add origin github.....
git add .
git commit -m "first commit"
git push origin master
How to safely add GIT to the server? I have SSH.
I know I can do git clone
in a separate folder etc, but I would like to do it on a working application. It is possible?