mesa@piefed.social to Technology@lemmy.worldEnglish · 2 months agoGitHub CEO delivers stark message to developers: Embrace AI or get out.www.businessinsider.comexternal-linkmessage-square138fedilinkarrow-up128arrow-down13
arrow-up125arrow-down1external-linkGitHub CEO delivers stark message to developers: Embrace AI or get out.www.businessinsider.commesa@piefed.social to Technology@lemmy.worldEnglish · 2 months agomessage-square138fedilink
minus-squaremuusemuuse@sh.itjust.workslinkfedilinkEnglisharrow-up2·2 months agoGitHub is being pushy? Fucking GitHub? Should we tell him git doesn’t actually need GitHub? That it existed just fine before it and will continue to exist after it? Ima tell him…
minus-squaremesa@piefed.socialOPlinkfedilinkEnglisharrow-up0·2 months agoAt some previous jobs, the newer devs would sometimes confuse the two. Its a real thing. Me I lived through svn, mercerial, and file vault. So glad we ended up with git as the protocol. Hell you can set up a git + file server and just use it without any Hub (Hob/lab/berg) if your bare metal enough. It works.
minus-squareaesthelete@lemmy.worldlinkfedilinkEnglisharrow-up1·2 months agoYou can literally run a single command to setup a remote git repository on a server that has ssh.
minus-squaremesa@piefed.socialOPlinkfedilinkEnglisharrow-up1·2 months agoYep! And some emulators only do dev work that way now. N*ntendo made sure of that.
minus-squarejosefo@leminal.spacelinkfedilinkEnglisharrow-up0·2 months agoLike, really? God I feel stupid if it’s that easy
minus-squareaesthelete@lemmy.worldlinkfedilinkEnglisharrow-up1·edit-22 months 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-up0·2 months agosorry if I’m extra stupid with these questions, but how you add that as a remote then?
minus-squareJackbyDev@programming.devlinkfedilinkEnglisharrow-up2·2 months agoArticle talking about it https://mikelev.in/futureproof/git-without-server-local-filesystem/
minus-squareaesthelete@lemmy.worldlinkfedilinkEnglisharrow-up1·2 months agogit remote add origin ssh://<<username>>@<<host>>/path/to/test_repo.git
GitHub is being pushy? Fucking GitHub?
Should we tell him git doesn’t actually need GitHub? That it existed just fine before it and will continue to exist after it?
Ima tell him…
At some previous jobs, the newer devs would sometimes confuse the two. Its a real thing.
Me I lived through svn, mercerial, and file vault. So glad we ended up with git as the protocol.
Hell you can set up a git + file server and just use it without any Hub (Hob/lab/berg) if your bare metal enough. It works.
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