Git
Git is a version control system (VCS). That means: if you're building a thing and manage it with Git, you can
- go back to old versions of the thing
- see when something changed
- see who changed it
- see why.
Git is good for
- plaintext (code, notes)
- working on a thing at the same time as someone else.
Git is bad for
- binary files (art, Word documents).
TODO:
- how to use it?