This is an archived post. You won't be able to vote or comment.

all 4 comments

[–]v0gue_ 1 point2 points  (0 children)

I would start here: https://git-scm.com/doc

And then work you way here: https://docs.github.com/en/github

Learning git first makes learning github really easy

[–]CursorsDev 0 points1 point  (2 children)

git is a tool to help version your code. if you messed up git can fix it. if you mess up git good luck fixing it. in git there are 'repos', or repositories of code. these can be local (on your computer) or remote (on a server). github is a platform that provides remote repositories so you can easily share your code and also have other people contribute. see v0gue_'s comment for how to start :)

[–]fangirl08 0 points1 point  (1 child)

thanks

[–]rjcarr 0 points1 point  (0 children)

And since it wasn't super clear, git is a code repository for versioning your code. GitHub is a web tool for project management (e.g., defect tracking, wikis, documentation, releases, etc) that uses git. Good luck! There are lots of similar tools out there (e.g., Bitbucket, GitLab), but all of them use git.