GITHUB | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 3

GITHUB

I want to know what is the use of github. I want to use it but i dont how to use it ? and what are the possibilities. Someone please guide me.

12th Aug 2017, 10:32 AM
Ankita
Ankita - avatar
2 Answers
+ 6
Github is for code collaboration. You can make commits to repositories which means that you can add new stuff to existing code. You can also report issues and make contributions.There is a "hello world" guide on their site to start with.
12th Aug 2017, 10:51 AM
Karl T.
Karl T. - avatar
+ 2
pycharm let's you use git for version control (which is github). What that means is, it allows you to document and save your progress as you code. Not just the immediate, but any previous versions. It's useful because you can safely delete something, knowing that you can just go back a patch. It also helps you keep track of what changes you made. This can be seriously important as tiny changes can be overlooked or even forgotten. This is life saving if your code gets into the hundreds of lines or higher. I've had times where I'm like (this code is a disaster, I'm gonna start from scratch), delete it all, but then want to know how I solved an issue by looking at my older code.
12th Aug 2017, 10:44 AM
Sapphire