mesa to [email protected]English • 8 days agoGitHub CEO delivers stark message to developers: Embrace AI or get out.www.businessinsider.comexternal-linkmessage-square327fedilinkarrow-up1754
arrow-up1754external-linkGitHub CEO delivers stark message to developers: Embrace AI or get out.www.businessinsider.commesa to [email protected]English • 8 days agomessage-square327fedilink
minus-square@[email protected]linkfedilinkEnglish8•edit-27 days agoYup 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.
minus-square@[email protected]linkfedilinkEnglish3•7 days agosorry if I’m extra stupid with these questions, but how you add that as a remote then?
minus-square@[email protected]linkfedilinkEnglish11•7 days agogit remote add origin ssh://<<username>>@<<host>>/path/to/test_repo.git
minus-squareJackbyDevlinkfedilinkEnglish4•7 days agoArticle talking about it https://mikelev.in/futureproof/git-without-server-local-filesystem/
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/