This is a most excellent place for technology news and articles.
Like, really? God I feel stupid if it's that easy
Yup
git init --bare test_repo.git
If you can ssh into it, you should be able to add that just like any other remote to your local git.
You can clone local repos from your filesystem as well. There's really not a lot of magic to it which is what makes it so cool.
sorry if I'm extra stupid with these questions, but how you add that as a remote then?
git remote add origin ssh://<<username>>@<<host>>/path/to/test_repo.git
Article talking about it https://mikelev.in/futureproof/git-without-server-local-filesystem/
Like, really? God I feel stupid if it's that easy
Yup
git init --bare test_repo.git
If you can ssh into it, you should be able to add that just like any other remote to your local git.
You can clone local repos from your filesystem as well. There's really not a lot of magic to it which is what makes it so cool.
sorry if I'm extra stupid with these questions, but how you add that as a remote then?
git remote add origin ssh://<<username>>@<<host>>/path/to/test_repo.git
Article talking about it https://mikelev.in/futureproof/git-without-server-local-filesystem/