´mkdir folder_name´: Make a folder ´cd folder_name': Change directory
´git clone ssh_code´: Clone the project
´git branch´: See in which branch you are ´git branch own_branch_name´: Create your branch ´git checkout own_branch_name´: Change branch
´git diff´: See the diferences from the original file ´git checkout master´: Switch to master ´git pull´: See for updates
´git checkout own_branch_name´ ´git pull´ ´git add .´: Group all the files changed in one additive ´git commit -m "Changes made are..."´ ´git push´