Its paid and not FOSS but you can use it without paying but some QOL features are missing. boot.dev . Its full backend course btw. There are 2 git course. Basic and advanced.
Git
Git is a free and open source distributed version control system designed to handle everything from small to very large projects with speed and efficiency.
Resources
Rules
- Follow programming.dev rules
- Be excellent to each other, no hostility towards users for any reason
- No spam of tools/companies/advertisements. It’s OK to post your own stuff part of the time, but the primary use of the community should not be self-promotion.
Git Logo by Jason Long is licensed under the Creative Commons Attribution 3.0 Unported License.
Haha, this was the first tutorial I was given, though for the reasons you mentioned I didnt follow it. Seems good tho😅
It's not at all gamified or fancy, but I find the official documentation to be excellent - a step well above the norm these days.
Bonus: Downloadable as an epub or pdf, creative commons license, and regularly updated.
Hehe, that's why I added it at the end:) Looks cool indeed
Probably the worst way to learn git is "as-you-go" in an actual project. Unfortunately that's a common way to start, that's definitely how I started. If I had to learn it again or teach it to somebody else, I'd make a super simple application, like a "Hello World" webpage, and learn and gain confidence with that.
Indeed, I think my next step is to make a test repo on codeberg and play around before using git more seriously
Oh god I'm just starting to learn a little shell and Python and now I find out git isn't just a website with code on it
I reckon ill be using this bookmark for a while...
I saw a browser game somewhere that taught vim keys/motions
Ohh that'd be a fun thing to do in the future
Vim seems powerful, might learn it better one day
Thank you, I was just looking into what git is and what I could use it for
It's a version control system, in the absolute broadest sense of the word. You can look at the version of your code, you had yesterday. And your mate can create their own version of your code, which they can later send to you and you can combine it with your version.
So, in some sense, it's a time machine and in the other sense, it's the basis for how collaboration in software development works at all.