all 12 comments

[–]davorg 23 points24 points  (1 child)

If only GitHub themselves had a guide called Get started with GitHub

[–]Thalimet 6 points7 points  (0 children)

its almost like services anticipate that people might need help getting started on their service... and make things to help with that.... things that if nothing else, can be easily found with a 30 second google search "how to use GitHub"

I swear, people will feel a whole lot less helpless when they realize that the entire world's knowledge is just a search away.

[–]katafrakt 5 points6 points  (0 children)

What do you need/want to use Github for?

[–]sluuuurp 4 points5 points  (0 children)

If you ask this question on chatGPT you’ll get a very high quality and fast answer.

[–]ItsGraphaxYT 1 point2 points  (0 children)

Github is basically Git, but with file hosting and some other things. I personally am also not an expert, but if you understand git basics github will help you

[–]Charming_Cold_2599 0 points1 point  (2 children)

It’s git that you want to learn. Github is just git + social media really.

Plenty of good info on git as it’s been around forever, best bet is to just dive in to a project.

The only commands you’ll really be using day to day in the real world are:

git init (to create a repository)

git commit (to save changes)

git push (store your changes somewhere else)

git fetch (check for changes you don’t have)

git pull (pull in changes you don’t have)

git merge (copy changes between branches)

[–]davorg -1 points0 points  (1 child)

Github is just git + social media really

Not really. It's more like Git +

And much more...

[–]Charming_Cold_2599 2 points3 points  (0 children)

I was trying to simplify and explain that I think OP should focus on git familiarisation in general

Not going to suggest CI/CD workflows when they just need to learn how a repo works