깃 Git
git init
git add
$ git add <추가할 파일>
$ git add . //현재 디렉터리의 모든 파일 추가git commit
$ git status //현 파일 상태 확인
$ git add . //현재 디렉터리의 모든 변경 사항을 추가
$ git commit
$ git commit -m "initial commit" //메시지 추가
$ git commit -am "commit" //자동 추가stage area

git log
git diff
git reset
git revert
Last updated