mkdir dirName
cd dirName
git init
2-1. git 확인(git repository 정보들 확인)
open .git2-2. git 삭제
rm -rf .git
git status
git add test.txt
4-1. 작성 완료된 모든 파일 추가
git add .4-2. 작성 완료된 txt파일 추가
git add *.txt
echo ellie >> test.txt
git rm --cached test.txt