git init
git status
git add
명령어를 사용
git add file.js // 특정 파일 추가
git add file.js file2.js file3.js // 여러개 파일 추가
파일을 각각 추가하지 않고 모든 파일 추가
git add .
git commit -m "Commit message"
git log
git branch 브런치명
git branch -d 브런치명
git branch -m 브랜치명 새로운 브랜치명
git checkout 브런치명
git merge 브런치명
git push origin feature/branchname
로컬저장소와 원격저장소를 연결
git remote add origin [자신의 Github 원격저장소 주소]
git remote -v