Main Development GIT GIT Commands GIT setup / initializegit initgit config --global user.name "Ed de Heus"git config --global user.email "ed@ed.nl"git config --global color.ui auto First check-in to git from excisting folder cd /existing_foldergit remote add origin https://gituser@git.nl/group/git-project.gitgit add .git commit -m "Init version"git push origin master First checkin-out from git to excisting foldercd /excisting_foldergit remote add origin https://gituser@git.nl/group/git-project.gitgit pull origin master Save git credentialsgit config --global credential.helper storegit pullAttention: The credentials are saved in plaintext! Everyone on your computer can view this! Update local version with gitgit pull origin masterGet a single file from gitgit checkout HEAD^ file/to/overwritegit pull