IAG0581
Hannes Kinks
Tallinn, 2015
Version control is a system that records changes to a file or set of files over time so that you can recall specific versions later.
Goals:
Example software:
Guide to get you started
http://ati.ttu.ee/wiki/index.php/Git_manual
Pregenerated repositories for each student
https://git.ttu.ee/ained/iag0581/username.git
Downloading GIT at home
git init - create a new repository
git add <filename> - add a file to staging area
git commit -m <comment> - commit changes with comment
git clone <url> - copy repository to local machine
git push - push the changes to remote repository
git pull - update the local repository