mesa@piefed.social to Technology@lemmy.worldEnglish · 8 days agoGitHub CEO delivers stark message to developers: Embrace AI or get out.www.businessinsider.comexternal-linkmessage-square327linkfedilinkarrow-up1757arrow-down122
arrow-up1735arrow-down1external-linkGitHub CEO delivers stark message to developers: Embrace AI or get out.www.businessinsider.commesa@piefed.social to Technology@lemmy.worldEnglish · 8 days agomessage-square327linkfedilink
minus-squareaesthelete@lemmy.worldlinkfedilinkEnglisharrow-up22·7 days agoYou can literally run a single command to setup a remote git repository on a server that has ssh.
minus-squaremesa@piefed.socialOPlinkfedilinkEnglisharrow-up18arrow-down1·7 days agoYep! And some emulators only do dev work that way now. N*ntendo made sure of that.
minus-squarejosefo@leminal.spacelinkfedilinkEnglisharrow-up4·7 days agoLike, really? God I feel stupid if it’s that easy
minus-squareaesthelete@lemmy.worldlinkfedilinkEnglisharrow-up8·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-squarejosefo@leminal.spacelinkfedilinkEnglisharrow-up3·7 days agosorry if I’m extra stupid with these questions, but how you add that as a remote then?
minus-squareJackbyDev@programming.devlinkfedilinkEnglisharrow-up4·7 days agoArticle talking about it https://mikelev.in/futureproof/git-without-server-local-filesystem/
minus-squareaesthelete@lemmy.worldlinkfedilinkEnglisharrow-up11·7 days agogit remote add origin ssh://<<username>>@<<host>>/path/to/test_repo.git
You can literally run a single command to setup a remote git repository on a server that has ssh.
Yep! And some emulators only do dev work that way now. N*ntendo made sure of that.
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?
Article talking about it https://mikelev.in/futureproof/git-without-server-local-filesystem/
git remote add origin ssh://<<username>>@<<host>>/path/to/test_repo.git