4
jdmkaan
8y

What is GitHub? And what is it used for? Why should I use it?

Comments
  • 6
    Version control / backup

    It's really handy if you know how it works
  • 2
    Github is an online repository for projects using git.

    As mentioned above git is for version control, similar to svn. If you're creating any project of considerable size you HAVE to use some sort of version control.

    I can't remember the name but there was an indie game company that got their hardware stolen and they lost EVERYTHING because they didn't use VC
  • 1
    If you feel it's too intimidating try using a GUI interface for git. It'll make more sense
  • 3
    Like sourcetree
  • 1
    @xroad git kraken also is pretty nice
  • 1
    Using git, you can work on projects by making copy of the original and change some stuff in your copy and then, combine with the original....It is super easy, hassle free and most of the devs use it, so you should too.
  • 1
    a way to save the state of your code in different snapshots that you can go back to one if you screw up, that you can share with others so they can change the code, save their own states and go back if either one of you screws up. also useful as a remote back up for when your desktop gets set on fire.
  • 0
    @Oceas better than sourcetree in your opinion?
  • 4
    If you think about it, it's kinda like the checkpoints/savegame files of programming ... #showerThoughts
  • 1
    If while coding you create many folders with different versions, git will help you. A lot.
  • 2
    @mags24 did you just refer to git as "super easy and hassle-free"?
  • 0
    @xroad honestly.... I just use command line for everything but visually it looks more appealing to be the few times I want to see the history of commits and branches.
  • 1
    @xroad If you're on Windows... git extensions for Windows is my favorite gui.
  • 0
    what is gui?
  • 1
    @elazar no, but the guy above me did ;)
  • 1
    @mikk150 Graphical User Interface. As opposed to command line.

    ...unless you were being facetious...
  • 1
    @mags24 sorry. An off-by-one error :)
  • 0
    @xroad this gui you say, it seems fun you say, what can you do with it?
Add Comment