I have a project on a local machine, and a git repository on a remote server. Is there a way I can push/commit/transfer this project to the remote server? It’s telling me “not a git repository”, I know that! I just want it on the remote server.
Share
You could
clonethe remote repo onto your local machine, copy your files into the directory,addthe new files,committhem andpushthem back to the remote server.Then copy your files into the directory
Assuming you know git, you should be able to get this to work.