1. git 기본 사용법$ echo "test materials" > index.html$ repository 생성$ git initInitialized empty Git repository in c:/dev/git/.git/$ echo "This is test materials" > init.html$ echo "This is test materials" > index.html$ git add index.htmlwarning: LF will be replaced by CRLF in index.html.The file will have its original line endings in your working directory.$ git status# On branch master## Initial co..