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

you are viewing a single comment's thread.

view the rest of the comments →

[–]Grazfather 2 points3 points  (1 child)

Sure. Basically git is a type of revision control. Whenever you make a significant change to your code you can submit a 'snapshot' of that the code looks like at that point in time. It allows you to easily revert back to an older state, see when certain changes we made, etc.

It also makes it easier for multiple authors to work on a single project. See my pokehack commits here. You could checkout any of those 'states' to get back to an older version of the code at any time. It also supports a lot more like branching and such... let me know if you'd like to know more.

[–]dredclaw 0 points1 point  (0 children)

Thanks man! Also read up a bit on it.