Git docs - here you can find good manuals for git
- Copy link from github

- Open terminal in your work directory and execute command
git clonecd my-work-directory # moving to work dir git clone https://github.com/Playtronica/.github.git # cloninig repository from github
- Now you got sources from github on your computer
- Use branches for your changes
git pull # before checkout make shure you get last changes from remote git checkout -b my-awesome-branch # checkout to your branch to isolate your work
- Commit results
git add names_of files_that_i # add files to commit git add want_to_commit # and anouther file that we want to add git status # make shure that everything is OK git commit # commit changes # You also can write commit message in command line git commit -m "Message describing my result"
- Write informative messages for commits


