Version 생성
<aside>
<img src="/icons/sign-in_lightgray.svg" alt="/icons/sign-in_lightgray.svg" width="40px" />
방법
- mkdir “” → 작업 할 디렉토리 생성
- cd “” → 해당 디렉토리로 접속
- git init → git 작업 선언
- vi hello.txt
- git status → hello.txt 확인 가능
- git add hello.txt
- git commit -, “work 1”
- git log
- “work 1” log 확인 가능
</aside>